lobaro / restic-backup-docker

A docker container to automate backups with restic
Apache License 2.0
345 stars 113 forks source link

Fixing default cron value #19

Closed NickBusey closed 6 years ago

NickBusey commented 6 years ago

The current default of * */6 * * * translates into every 6 hours, every minute for that whole hour. This will run the backup 240 times a day rather than the intended 4.

0 */6 * * * says at the first minute of every 6th hour. This is probably what is desired.

niondir commented 6 years ago

Thanks for the contribution.