diff options
author | Matthew Somerville <matthew-github@dracos.co.uk> | 2017-08-15 16:57:19 +0100 |
---|---|---|
committer | Matthew Somerville <matthew-github@dracos.co.uk> | 2017-08-15 16:57:19 +0100 |
commit | 60b941bc7868c4b0a829f7d497262015d6ab69c4 (patch) | |
tree | 523e1931be138a9880015d6c97acd7b03abc8cbe /conf | |
parent | e10791e6c40d872b15b21a96f5fac2d0f82fbd85 (diff) |
Document fetch-comments-24hs in crontab example.
In the absence of making any changes. Fixes #1739.
Diffstat (limited to 'conf')
-rw-r--r-- | conf/crontab-example | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/conf/crontab-example b/conf/crontab-example index 68197d7b1..037dd147e 100644 --- a/conf/crontab-example +++ b/conf/crontab-example @@ -18,9 +18,11 @@ PATH=/usr/local/bin:/usr/bin:/bin 2 * * * * "$FMS/commonlib/bin/run-with-lockfile.sh" -n "$LOCK_DIR/send-alerts.lock" "$FMS/bin/send-alerts" || echo "stalled?" 22,52 * * * * "$FMS/commonlib/bin/run-with-lockfile.sh" -n "$LOCK_DIR/send-questionnaires.lock" "$FMS/bin/send-questionnaires" || echo "stalled?" -# If you utilise Open311 and the updates extension, you will need to run these scripts +# If you utilise Open311 and the updates extension, you will need to run these scripts. +# We currently run fetch-comments-24hs once a night to catch anything missed. #*/5 * * * * "$FMS/commonlib/bin/run-with-lockfile.sh" -n "$LOCK_DIR/send-comments.lock" "$FMS/bin/send-comments" || echo "stalled?" -#*/5 * * * * "$FMS/commonlib/bin/run-with-lockfile.sh" -n "$LOCK_DIR/fetch-comments.lock" "$FMS/bin/fetch-comments" || echo "stalled?" +#5,10,15,20,25,30,35,40,45,50,55 * * * * "$FMS/commonlib/bin/run-with-lockfile.sh" -n "$LOCK_DIR/fetch-comments.lock" "$FMS/bin/fetch-comments" || echo "stalled?" +#0 1 * * * "$FMS/commonlib/bin/run-with-lockfile.sh" -n "$LOCK_DIR/fetch-comments.lock" "$FMS/bin/fetch-comments-24hs" || echo "stalled?" 47 0-7,9-23 * * * "$FMS/commonlib/bin/run-with-lockfile.sh" -n "$LOCK_DIR/open311-populate-service-list.lock" "$FMS/bin/open311-populate-service-list" || echo "stalled?" 47 8 * * * "$FMS/commonlib/bin/run-with-lockfile.sh" -n "$LOCK_DIR/open311-populate-service-list.lock" "$FMS/bin/open311-populate-service-list --warn" || echo "stalled?" |