From e4e6da1bca668d3b12f4c0dd1e61333b46e595a9 Mon Sep 17 00:00:00 2001 From: maride Date: Sat, 14 Oct 2023 15:53:09 +0200 Subject: [PATCH] Fix issue with cron --- init/cron.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init/cron.sh b/init/cron.sh index c82bb2f..72825be 100755 --- a/init/cron.sh +++ b/init/cron.sh @@ -9,7 +9,7 @@ if [ "$BUILDFREQ" == "" ]; then fi # Run the pull script regularly -echo "$BUILDFREQ * * * * /aux/pull-n-build.sh" >> /var/spool/cron/crontabs/root +echo "*/$BUILDFREQ * * * * /aux/pull-n-build.sh" >> /var/spool/cron/crontabs/root # start cron daemon (goes into background) crond