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