Home | History | Annotate | Line # | Download | only in etc
crontab revision 1.9
      1  1.9  thorpej #	$NetBSD: crontab,v 1.9 1995/12/17 02:01:10 thorpej Exp $
      2  1.9  thorpej #
      3  1.5      cgd # /var/cron/tabs/root - root's crontab for NetBSD
      4  1.2    glass #
      5  1.2    glass SHELL=/bin/sh
      6  1.2    glass PATH=/etc:/bin:/sbin:/usr/bin:/usr/sbin
      7  1.2    glass HOME=/var/log
      8  1.2    glass #
      9  1.2    glass #minute	hour	mday	month	wday	command
     10  1.2    glass #
     11  1.7      cgd 0-59/10	*	*	*	*	/usr/libexec/atrun
     12  1.5      cgd #
     13  1.5      cgd # rotate log files every hour, if necessary
     14  1.5      cgd 0	*	*	*	*	/usr/bin/newsyslog
     15  1.5      cgd #
     16  1.5      cgd # do daily/weekly/monthly maintenance
     17  1.8      cgd 0	2	*	*	*	/bin/sh /etc/daily 2>&1 | tee /var/log/daily.out | mail -s "daily output" root
     18  1.8      cgd 30	3	*	*	6	/bin/sh /etc/weekly 2>&1 | tee /var/log/weekly.out | mail -s "weekly output" root
     19  1.8      cgd 30	5	1	*	*	/bin/sh /etc/monthly 2>&1 | tee /var/log/monthly.out | mail -s "monthly output" root
     20