# @(#)/etc/cron.d/backups - configuration file for cron, (c)mpan 10/2003
# backup_daily.sh, backup_weekly.sh and backup_monthly.sh
# Modify these configurations as needed

# backup_daily.sh will be run every day time 1:02
02 1 * * * root /opt/backup_scripts/backup_daily.sh

# backup_weekly.sh will be run every week on sunday time 3:02
02 3 * * 0 root /opt/backup_scripts/backup_weekly.sh

# backup_monthly.sh will be run every month at 28.th day time 5:02
# i.e. minimum 4 weeks schedule for the recovery
02 5 28 * * root /opt/backup_scripts/backup_monthly.sh
