Advertisement
Guest User

crontab

a guest
Aug 29th, 2011
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. ~ # cat /opt/etc/crontab
  2. #-----------------------------------------------------------------
  3. # Shell variable for cron
  4. SHELL=/bin/sh
  5. # PATH variable for cron
  6. PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/opt/sbin:/opt/bin
  7. #M S T M W Befehl
  8. #-----------------------------------------------------------------
  9.  
  10. # every 4 hours daily bu
  11. 0 */4 * * * root rsnapshot hourly
  12. # every day 1900 daily bu
  13. 0 19 * * * root rsnapshot daily
  14. # every monday 2000 weekly bu
  15. 0 20 * * mon root rsnapshot weekly
  16. # every month on 01.xx 2100 monthly bu
  17. 0 21 1 * * root rsnapshot monthly
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement