diff options
author | emkael <emkael@tlen.pl> | 2024-02-22 16:58:22 +0100 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2024-02-22 16:58:22 +0100 |
commit | d03c646a9916f82f6758b33f689038afedce7f77 (patch) | |
tree | bf75aacda7db6675a31e5d74ce524e9b04548aa6 | |
parent | e63dae11915a20934b10b8642676f27b4fcf849e (diff) |
Enabling play-off and autocommit crons
-rw-r--r-- | _cron/autocommit | 2 | ||||
-rw-r--r-- | _cron/playoff | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/_cron/autocommit b/_cron/autocommit index dc3b17c..4e73f89 100644 --- a/_cron/autocommit +++ b/_cron/autocommit @@ -1,3 +1,3 @@ SHELL=/bin/bash -*/5 * * * * cd $SITEPATH && source .envrc && make autocommit >> $SITEPATH/_log/autocommit.log +*/15 * * * * cd $SITEPATH && source .envrc && make autocommit >> $SITEPATH/_log/autocommit.log SHELL=/bin/sh diff --git a/_cron/playoff b/_cron/playoff index 298f07b..808984f 100644 --- a/_cron/playoff +++ b/_cron/playoff @@ -1,3 +1,3 @@ SHELL=/bin/bash -# */10 * * * * cd $SITEPATH && source .envrc && cd playoff/scripts/ && ./autorun.sh +*/10 * * * * cd $SITEPATH && source .envrc && cd playoff/scripts/ && ./autorun.sh SHELL=/bin/sh |