From f5cffd95ab760db2723e6ff438197884a4c06180 Mon Sep 17 00:00:00 2001 From: elsombrante <52658122+elsombrante@users.noreply.github.com> Date: Tue, 7 Nov 2023 10:20:46 +0100 Subject: [PATCH] Revert "Removed daily cron from `crontab`" --- crontab/crontab | 1 + 1 file changed, 1 insertion(+) diff --git a/crontab/crontab b/crontab/crontab index faa1def..906a7b7 100644 --- a/crontab/crontab +++ b/crontab/crontab @@ -1,4 +1,5 @@ @hourly export $(cat /var/www/docker.env) && /bin/sh /var/www/eramba/app/upgrade/bin/cake cron job hourly >> /var/log/cron.log 2>&1 +@daily export $(cat /var/www/docker.env) && /bin/sh /var/www/eramba/app/upgrade/bin/cake cron job daily >> /var/log/cron.log 2>&1 @yearly export $(cat /var/www/docker.env) && /bin/sh /var/www/eramba/app/upgrade/bin/cake cron job yearly >> /var/log/cron.log 2>&1 * * * * * export $(cat /var/www/docker.env) && /bin/sh /var/www/eramba/app/upgrade/bin/cake queue run -v >> /var/log/cron.log 2>&1 # remember to end this file with an empty new line