[TYPO]Crontab : untabify all

This commit is contained in:
Fabien BOURGEOIS 2017-11-25 06:01:02 +01:00
parent 4267b8bdc0
commit 0185f00bb5
2 changed files with 4 additions and 4 deletions

View File

@ -1,5 +1,5 @@
# hourly backup
# m h dom mon dow user command
# m h dom mon dow user command
15 * * * * /bin/bash /opt/backup/rsync.sh >> /var/log/cron.log 2>&1
0 3 * * * /usr/bin/python /opt/backup/plan.py >> /var/log/cron.log 2>&1
0 3 * * * /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
# 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
10 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.