summaryrefslogtreecommitdiffstats
path: root/gold/scoreboard/util/schedule_logger
diff options
context:
space:
mode:
authortv <tv@xso>2011-08-31 23:50:23 +0200
committertv <tv@xso>2011-08-31 23:50:23 +0200
commite69dc0b22e2335d6c8f8bf2f11a5c6c767d1715d (patch)
treead086953938b76cb9547d8cefcae6ccbf835f5fb /gold/scoreboard/util/schedule_logger
parent09d6dd479e62372badb4684c5718038f72198295 (diff)
parenta001a6f2e5bf9a594e42038f5f7b49381ed8ca04 (diff)
Merge branch 'master' of github.com:krebscode/painload
Diffstat (limited to 'gold/scoreboard/util/schedule_logger')
-rwxr-xr-xgold/scoreboard/util/schedule_logger13
1 files changed, 13 insertions, 0 deletions
diff --git a/gold/scoreboard/util/schedule_logger b/gold/scoreboard/util/schedule_logger
new file mode 100755
index 00000000..6d071ba9
--- /dev/null
+++ b/gold/scoreboard/util/schedule_logger
@@ -0,0 +1,13 @@
+#!/bin/sh
+HERE=$(dirname $(readlink -f $0))
+. $HERE/../profile
+RUN_PARTS=$HERE/run-folder
+echo "adding getlogs to crontab"
+
+crontab -l 2>/dev/null | grep -v "$MDIR/modules/active" > $TEMPDIR/currcron
+echo "*/5 * * * * /bin/date >>$TEMPDIR/debug_log && $RUN_PARTS $MDIR/modules/active >>$TEMPDIR/btc_logger_debug_log 2>&1" >> $TEMPDIR/currcron
+
+cat $TEMPDIR/currcron
+
+crontab $TEMPDIR/currcron
+rm $TEMPDIR/currcron