summaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
authorgene <gene@cvs.openbsd.org>1997-04-03 20:12:08 +0000
committergene <gene@cvs.openbsd.org>1997-04-03 20:12:08 +0000
commitfbadcf58d5043e55aaa18fba13dbf1aee2e900ae (patch)
tree280f3054cf9587e0706235ecbf66d429e5e61fed /etc
parentd7db2a3109f6b0bf73e8d676c281d3a3f3c9d531 (diff)
Avoid confusion on running /etc/daily on daylight-savings change days.
Diffstat (limited to 'etc')
-rw-r--r--etc/crontab4
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/crontab b/etc/crontab
index d41c078ed96..b64e1f738c9 100644
--- a/etc/crontab
+++ b/etc/crontab
@@ -1,4 +1,4 @@
-# $OpenBSD: crontab,v 1.4 1996/12/07 07:50:33 deraadt Exp $
+# $OpenBSD: crontab,v 1.5 1997/04/03 20:12:07 gene Exp $
#
# /var/cron/tabs/root - root's crontab
#
@@ -14,6 +14,6 @@ HOME=/var/log
0 * * * * /usr/bin/newsyslog
#
# do daily/weekly/monthly maintenance
-0 2 * * * /bin/sh /etc/daily 2>&1 | tee /var/log/daily.out | mail -s "daily output" root
+30 1 * * * /bin/sh /etc/daily 2>&1 | tee /var/log/daily.out | mail -s "daily output" root
30 3 * * 6 /bin/sh /etc/weekly 2>&1 | tee /var/log/weekly.out | mail -s "weekly output" root
30 5 1 * * /bin/sh /etc/monthly 2>&1 | tee /var/log/monthly.out | mail -s "monthly output" root