system-configs/etc/crontab

8 lines
609 B
Text

# do daily/weekly/monthly maintenance
# min hour day month weekday user command
0,15,30,45 * * * * root cd / && [ -d /etc/cron.15min ] && run-parts --report /etc/cron.15min
0 * * * * root cd / && [ -d /etc/cron.hourly ] && run-parts --report /etc/cron.hourly
0 0 * * * root cd / && [ -d /etc/cron.daily ] && run-parts --report /etc/cron.daily
0 0 * * 6 root cd / && [ -d /etc/cron.weekly ] && run-parts --report /etc/cron.weekly
0 0 1 * * root cd / && [ -d /etc/cron.monthly ] && run-parts --report /etc/cron.monthly
0 0 1 1 * root cd / && [ -d /etc/cron.yearly ] && run-parts --report /etc/cron.yearly