diff options
author | root <root@dev.spline.de> | 2008-08-28 18:11:26 +0200 |
---|---|---|
committer | root <root@dev.spline.de> | 2008-08-28 18:11:26 +0200 |
commit | 43cad154aaa7778b51b884b24147b51656ae3596 (patch) | |
tree | 1027be73a9ec83cd4812444541c5be17f726dbdd /bin/check_registrations | |
parent | d712a8a289885ca242b0de173535ab6ded2a833c (diff) | |
download | dev-scripts-43cad154aaa7778b51b884b24147b51656ae3596.tar.gz dev-scripts-43cad154aaa7778b51b884b24147b51656ae3596.tar.xz dev-scripts-43cad154aaa7778b51b884b24147b51656ae3596.zip |
two new cronscripts
Diffstat (limited to 'bin/check_registrations')
-rwxr-xr-x | bin/check_registrations | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/bin/check_registrations b/bin/check_registrations new file mode 100755 index 0000000..cc48d4a --- /dev/null +++ b/bin/check_registrations @@ -0,0 +1,28 @@ +#!/bin/bash + +dbquery() { + mysql -s -s -e "$*" trac +} + +# main function +main() { + dbquery("delete from user where activated = 0 and adddate(date_added,7) < curdate()") +} + +# go to script dir +pushd $(dirname $0) > /dev/null + +# get global functions +source "./functions.sh" + +# load configuration +source "./config.sh" + +# exit on errors +set -e + +# start main program +main "$@" + +# leave script dir +popd > /dev/null |