change default cron command

This commit is contained in:
mc1 2020-11-17 15:36:30 +01:00
parent 5256c14b67
commit a8f1e37b7f
2 changed files with 2 additions and 2 deletions

View File

@ -1 +1 @@
10 2 * * * . /env.sh && /backup.sh && rcb cleanup > /proc/1/fd/1 2>&1
10 2 * * * . /env.sh && /backup.sh > /proc/1/fd/1 2>&1

View File

@ -2,7 +2,7 @@ import os
class Config:
default_backup_command = ". /env.sh && /backup.sh && rcb cleanup > /proc/1/fd/1 2>&1"
default_backup_command = ". /env.sh && /backup.sh > /proc/1/fd/1 2>&1"
default_crontab_schedule = "0 2 * * *"
"""Bag for config values"""