diff options
Diffstat (limited to 'etc/crontab')
-rw-r--r-- | etc/crontab | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/etc/crontab b/etc/crontab index 3b2c424491e..a2b9f802b13 100644 --- a/etc/crontab +++ b/etc/crontab @@ -1,4 +1,4 @@ -# $OpenBSD: crontab,v 1.16 2009/05/09 14:21:24 schwarze Exp $ +# $OpenBSD: crontab,v 1.17 2009/05/09 16:29:54 schwarze Exp $ # # /var/cron/tabs/root - root's crontab # @@ -16,7 +16,8 @@ HOME=/var/log # send log file notifications, if necessary #1-59 * * * * /usr/bin/newsyslog -m # -# do daily and weekly maintenance +# do daily/weekly/monthly maintenance 30 1 * * * umask 077; /bin/sh /etc/daily 2>&1 | tee /var/log/daily.out | mail -s "`/bin/hostname` daily output" root 30 3 * * 6 umask 077; /bin/sh /etc/weekly 2>&1 | tee /var/log/weekly.out | mail -s "`/bin/hostname` weekly output" root +30 5 1 * * umask 077; /bin/sh /etc/monthly 2>&1 | tee /var/log/monthly.out | mail -s "`/bin/hostname` monthly output" root #0 * * * * /usr/libexec/spamd-setup |