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