From 41f0fce05d4e0feccd0aae396ba4b86a8f139d31 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Wed, 10 Jan 2024 16:26:25 +0000 Subject: [PATCH] cron: Re-enable all cronjobs for production Signed-off-by: Michael Tremer --- src/crontab/ipfire | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/crontab/ipfire b/src/crontab/ipfire index 03fd1697..a5cb7c29 100644 --- a/src/crontab/ipfire +++ b/src/crontab/ipfire @@ -1,25 +1,25 @@ SHELL=/bin/bash # Update blog feeds once an hour -#0 * * * * nobody ipfire.org update-blog-feeds +0 * * * * nobody ipfire.org update-blog-feeds # Scan for release files once an hour -#0 * * * * nobody ipfire.org scan-files +0 * * * * nobody ipfire.org scan-files # Send messages -#* * * * * nobody flock /tmp/.ipfire.org.send-all-messages.lock ipfire.org send-all-messages +* * * * * nobody flock /tmp/.ipfire.org.send-all-messages.lock ipfire.org send-all-messages # Run campaigns -#*/5 * * * * nobody ipfire.org --logging=error run-campaigns +*/5 * * * * nobody ipfire.org --logging=error run-campaigns # Announce blog posts -#*/5 * * * * nobody ipfire.org announce-blog-posts +*/5 * * * * nobody ipfire.org announce-blog-posts # Cleanup once an hour -#30 * * * * nobody ipfire.org cleanup +30 * * * * nobody ipfire.org cleanup # Check mirrors once every 30 min -#*/30 * * * * nobody ipfire.org --logging=error check-mirrors +*/30 * * * * nobody ipfire.org --logging=error check-mirrors # Toot once a day -#0 8 * * * nobody sleep ${RANDOM} && ipfire.org toot +0 8 * * * nobody sleep ${RANDOM} && ipfire.org toot -- 2.47.3