crontab revision 1.9
1#	$OpenBSD: crontab,v 1.9 2001/09/11 19:03:55 millert Exp $
2#
3# /var/cron/tabs/root - root's crontab
4#
5SHELL=/bin/sh
6PATH=/bin:/sbin:/usr/bin:/usr/sbin
7HOME=/var/log
8#
9#minute	hour	mday	month	wday	command
10#
11*/10	*	*	*	*	/usr/libexec/atrun
12#
13# sendmail clientmqueue runner
14*/30	*	*	*	*	/usr/sbin/sendmail -L sm-msp-queue -Ac -q
15#
16# rotate log files every hour, if necessary
170	*	*	*	*	/usr/bin/newsyslog
18# send log file notifications, if necessary
19#1-59	*	*	*	*	/usr/bin/newsyslog -m
20#
21# do daily/weekly/monthly maintenance
2230	1	*	*	*	/bin/sh /etc/daily 2>&1 | tee /var/log/daily.out | mail -s "`/bin/hostname` daily output" root
2330	3	*	*	6	/bin/sh /etc/weekly 2>&1 | tee /var/log/weekly.out | mail -s "`/bin/hostname` weekly output" root
2430	5	1	*	*	/bin/sh /etc/monthly 2>&1 | tee /var/log/monthly.out | mail -s "`/bin/hostname` monthly output" root
25