SHELL=/bin/bash
#add games in case someone wants to use /usr/games/random
PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:/usr/games
TZ=UTC
MAILTO=root

# Run every n minutes of uptime.
* * * * * run-parts /etc/cron.minutely
@hourly run-parts /etc/cron.hourly
@daily run-parts /etc/cron.daily
@weekly run-parts /etc/cron.weekly
@monthly run-parts /etc/cron.monthly
18 0 1 1 * run-parts /etc/cron.yearly

# Run at specified times.
# * * * * * run-parts /etc/cron.minutely
# 0 * * * * run-parts /etc/cron.hourly
# 2 0 * * * run-parts /etc/cron.daily
#10 0 * * 0 run-parts /etc/cron.weekly
#12 0 1 * * run-parts /etc/cron.monthly
#18 0 1 1 * run-parts /etc/cron.yearly

