diff options
author | sean <sean@FreeBSD.org> | 1994-04-15 16:57:38 +0000 |
---|---|---|
committer | sean <sean@FreeBSD.org> | 1994-04-15 16:57:38 +0000 |
commit | f8215e29065a9b8144741ce0e06b88cfab491a5f (patch) | |
tree | 20e20e4a13eb5074f46155e1258642e22be58a20 /etc/crontab | |
parent | 9bb0d0905ee4953b151e5d64f01faf8e41e44255 (diff) | |
download | FreeBSD-src-f8215e29065a9b8144741ce0e06b88cfab491a5f.zip FreeBSD-src-f8215e29065a9b8144741ce0e06b88cfab491a5f.tar.gz |
As a result of the distribution crontab, /usr/libexec/atrun was being run
only once an hour instead of every five minutes. This was due to a minute
specification of 0/5 -- which should have been */5. This has been fixed.
Expect your /var/cron/log to grow much faster now.
Diffstat (limited to 'etc/crontab')
-rw-r--r-- | etc/crontab | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/etc/crontab b/etc/crontab index 5327ef6..817175c 100644 --- a/etc/crontab +++ b/etc/crontab @@ -1,6 +1,6 @@ -# /var/cron/tabs/root - root's crontab for FreeBSD +# /etc/crontab - root's crontab for FreeBSD # -# $Id: crontab,v 1.4 1994/01/08 15:07:43 ache Exp $ +# $Id: crontab,v 1.5 1994/01/22 20:44:12 guido Exp $ # From: Id: crontab,v 1.6 1993/05/31 02:03:57 cgd Exp # SHELL=/bin/sh @@ -9,7 +9,7 @@ HOME=/var/log # #minute hour mday month wday who command # -0/5 * * * * root /usr/libexec/atrun +*/5 * * * * root /usr/libexec/atrun # # rotate log files every hour, if necessary #0 * * * * root /usr/bin/newsyslog |