crontab.txt 377 B

12345678910111213
  1. # * * * * *
  2. # | | | | |─── Weekday (0-7, Sunday is 0 7)
  3. # | | | |└─────Month (1-12)
  4. # | | |└───────Day (1-31)
  5. # | |──────────Hour (0-23)
  6. # |└───────────Minute (0-59)
  7. # Run each day 2:30
  8. 2 30 * * * /etc/restic/run.sh 0 2>&1
  9. # Run every minute for debugging
  10. #*/1 * * * * /root/restic/run.sh 0 2>&1