diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1998-05-14 23:58:02 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1998-05-14 23:58:02 +0000 |
commit | 403e9381deb2c88b9d0161c34e0f19ded905412a (patch) | |
tree | 0a673c60ac8e352bc0256cc9b0ad475dae67874c /etc | |
parent | ae35469520b054e17cc94d43b9e77be5d6795c3c (diff) |
move cron to the end so users cannot run cron jobs before the system is all the way up
Diffstat (limited to 'etc')
-rw-r--r-- | etc/rc | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -1,4 +1,4 @@ -# $OpenBSD: rc,v 1.72 1998/05/13 21:10:03 deraadt Exp $ +# $OpenBSD: rc,v 1.73 1998/05/14 23:58:01 millert Exp $ # System startup script run by init on autoboot # or after single-user. @@ -293,10 +293,6 @@ if [ -f /var/account/acct ]; then echo 'turning on accounting'; accton /var/account/acct fi -echo -n standard daemons: -echo -n ' cron'; cron -echo '.' - echo -n starting network daemons: # $gated and $routed_flags are imported from /etc/rc.conf. @@ -415,6 +411,10 @@ fi [ -f /etc/rc.local ] && . /etc/rc.local +echo -n standard daemons: +echo -n ' cron'; cron +echo '.' + date # Alternatively, on some architectures, xdm may be started in /etc/ttys. |