[FIX]crontabs were bad...

This commit is contained in:
Fabien Bourgeois 2016-10-09 07:23:52 +02:00
parent 3db3352c1a
commit a1a4fd6ec8
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
# hourly backup
# m h dom mon dow user command
15 * * * * root /bin/bash /opt/backup/rsync.sh >> /var/log/cron.log 2>&1
* 3 * * * root /usr/bin/python /opt/backup/plan.py >> /var/log/cron.log 2>&1
0 3 * * * root /usr/bin/python /opt/backup/plan.py >> /var/log/cron.log 2>&1
# empty line needed

View File

@ -1,5 +1,5 @@
# daily odoo backup
# m h dom mon dow user command
* 2 * * * odoo /bin/bash /home/odoo/backup.sh >> /var/log/cron.log 2>&1
0 2 * * * odoo /bin/bash /home/odoo/backup.sh >> /var/log/cron.log 2>&1
# empty line required at the end of this file for a valid cron file.