10 lines
299 B
Text
10 lines
299 B
Text
# /etc/cron.d/restic.crontab
|
|
|
|
# every 4 hours create a backup
|
|
0 */4 * * * root bash /opt/scripts/restic/backup.sh
|
|
|
|
# every day at 20, forget old backups
|
|
30 20 * * * root bash /opt/scripts/restic/forget.sh
|
|
|
|
# every friday at 10 in the morning, prune
|
|
0 10 * * 5 root bash /opt/scripts/restic/prune.sh
|