5 lines
340 B
Text
5 lines
340 B
Text
# Run the hourly, daily, weekly, and monthly cron jobs.
|
|
0 * * * * ID=sys-hourly /usr/bin/run-parts /etc/cron.hourly >/dev/null
|
|
0 0 * * * ID=sys-daily /usr/bin/run-parts /etc/cron.daily >/dev/null
|
|
0 0 * * 0 ID=sys-weekly /usr/bin/run-parts /etc/cron.weekly >/dev/null
|
|
0 0 1 * * ID=sys-monthly /usr/bin/run-parts /etc/cron.monthly >/dev/null
|