From 84393e1610eb29bb6921ef27545618325f5ecc69 Mon Sep 17 00:00:00 2001 From: Fabien BOURGEOIS Date: Sat, 24 Sep 2022 09:40:42 +0200 Subject: [PATCH] [IMP]Odoo Backup : plan 30 minutes after backups, not 10 --- odoo/backups/crontab | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/odoo/backups/crontab b/odoo/backups/crontab index 934a85f..ecb3ab4 100644 --- a/odoo/backups/crontab +++ b/odoo/backups/crontab @@ -1,5 +1,5 @@ # daily odoo backup # m h dom mon dow user command 0 2 * * * /bin/su - odoo -c "/bin/bash /home/odoo/backup.sh" >> /var/log/cron.log 2>&1 -10 2 * * * /bin/su - odoo -c "/usr/bin/python /home/odoo/plan.py" >> /var/log/cron.log 2>&1 +30 2 * * * /bin/su - odoo -c "/usr/bin/python /home/odoo/plan.py" >> /var/log/cron.log 2>&1 # empty line required at the end of this file for a valid cron file.