[BACK]Return to crontab CVS log [TXT][DIR] Up to [local] / src / etc

Annotation of src/etc/crontab, Revision 1.9

1.9     ! millert     1: #      $OpenBSD: crontab,v 1.8 2000/12/29 14:38:45 angelos Exp $
1.2       niklas      2: #
1.3       deraadt     3: # /var/cron/tabs/root - root's crontab
1.1       deraadt     4: #
                      5: SHELL=/bin/sh
1.4       deraadt     6: PATH=/bin:/sbin:/usr/bin:/usr/sbin
1.1       deraadt     7: HOME=/var/log
                      8: #
                      9: #minute        hour    mday    month   wday    command
                     10: #
1.2       niklas     11: */10   *       *       *       *       /usr/libexec/atrun
1.9     ! millert    12: #
        !            13: # sendmail clientmqueue runner
        !            14: */30   *       *       *       *       /usr/sbin/sendmail -L sm-msp-queue -Ac -q
1.1       deraadt    15: #
                     16: # rotate log files every hour, if necessary
                     17: 0      *       *       *       *       /usr/bin/newsyslog
1.6       downsj     18: # send log file notifications, if necessary
1.8       angelos    19: #1-59  *       *       *       *       /usr/bin/newsyslog -m
1.1       deraadt    20: #
                     21: # do daily/weekly/monthly maintenance
1.7       deraadt    22: 30     1       *       *       *       /bin/sh /etc/daily 2>&1 | tee /var/log/daily.out | mail -s "`/bin/hostname` daily output" root
                     23: 30     3       *       *       6       /bin/sh /etc/weekly 2>&1 | tee /var/log/weekly.out | mail -s "`/bin/hostname` weekly output" root
                     24: 30     5       1       *       *       /bin/sh /etc/monthly 2>&1 | tee /var/log/monthly.out | mail -s "`/bin/hostname` monthly output" root