diff options
| author | martin <martin@NetBSD.org> | 2020-04-02 19:11:36 +0000 |
|---|---|---|
| committer | martin <martin@NetBSD.org> | 2020-04-02 19:11:36 +0000 |
| commit | 16c8e5d3b8d4121116ccde6334da831d7620beb6 (patch) | |
| tree | af0bf706206334f25af07d3d3acfbbf73b3ed8b6 /etc | |
| parent | 846b60dde857d8e3f339a1b06a6275c74c470f6c (diff) | |
Pull up following revision(s) (requested by kim in ticket #812):
etc/crontab: revision 1.16
Fix skipped daily in Eastern Europe
- Move /etc/daily from 03:15 -> 04:15
- Move /etc/weekly from 04:30 -> 05:30 (to keep the spacing)
This should prevent problems during daylight savings changeover (which
is usually between 01:00 -> 04:00, depending upon the region) where the
cronjobs may be executed twice, or never at all...
This expands on the previous fix in revision 1.13 from 1997.
Diffstat (limited to 'etc')
| -rw-r--r-- | etc/crontab | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/etc/crontab b/etc/crontab index 0ac11d7f4ba..0964e69863b 100644 --- a/etc/crontab +++ b/etc/crontab @@ -1,4 +1,4 @@ -# $NetBSD: crontab,v 1.15 2002/11/27 15:09:17 perry Exp $ +# $NetBSD: crontab,v 1.15.102.1 2020/04/02 19:11:36 martin Exp $ # # /var/cron/tabs/root - root's crontab for NetBSD # @@ -15,6 +15,6 @@ CRON_WITHIN=7200 0 * * * * /usr/bin/newsyslog # # do daily/weekly/monthly maintenance -15 3 * * * /bin/sh /etc/daily 2>&1 | tee /var/log/daily.out | sendmail -t -30 4 * * 6 /bin/sh /etc/weekly 2>&1 | tee /var/log/weekly.out | sendmail -t +15 4 * * * /bin/sh /etc/daily 2>&1 | tee /var/log/daily.out | sendmail -t +30 5 * * 6 /bin/sh /etc/weekly 2>&1 | tee /var/log/weekly.out | sendmail -t #30 5 1 * * /bin/sh /etc/monthly 2>&1 | tee /var/log/monthly.out | sendmail -t |
