crontab 486 B

123456789101112131415
  1. # for vixie cron
  2. # Global variables
  3. SHELL=/bin/bash
  4. PATH=/sbin:/bin:/usr/sbin:/usr/bin
  5. MAILTO=root
  6. HOME=/
  7. # check scripts in cron.hourly, cron.daily, cron.weekly and cron.monthly
  8. */15 * * * * root test -x /usr/sbin/run-crons && /usr/sbin/run-crons
  9. 0 * * * * root rm -f /var/spool/cron/lastrun/cron.hourly
  10. 0 3 * * * root rm -f /var/spool/cron/lastrun/cron.daily
  11. 15 4 * * 6 root rm -f /var/spool/cron/lastrun/cron.weekly
  12. 30 5 1 * * root rm -f /var/spool/cron/lastrun/cron.monthly