xref: /openbsd/etc/crontab (revision 75764308)
1#	$OpenBSD: crontab,v 1.7 1997/08/18 06:12:51 deraadt 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# rotate log files every hour, if necessary
140	*	*	*	*	/usr/bin/newsyslog
15# send log file notifications, if necessary
16#*/1	*	*	*	*	/usr/bin/newsyslog -m
17#
18# do daily/weekly/monthly maintenance
1930	1	*	*	*	/bin/sh /etc/daily 2>&1 | tee /var/log/daily.out | mail -s "`/bin/hostname` daily output" root
2030	3	*	*	6	/bin/sh /etc/weekly 2>&1 | tee /var/log/weekly.out | mail -s "`/bin/hostname` weekly output" root
2130	5	1	*	*	/bin/sh /etc/monthly 2>&1 | tee /var/log/monthly.out | mail -s "`/bin/hostname` monthly output" root
22