diff options
author | 2011-07-08 00:15:19 +0000 | |
---|---|---|
committer | 2011-07-08 00:15:19 +0000 | |
commit | 324f089ba70fa8756e8dbc96484e36742daf9ec2 (patch) | |
tree | 77098bd6390da297894847d7d139c1bc75df9311 | |
parent | some machines don't boot with the previous uvm reserve enforcement diff. (diff) | |
download | wireguard-openbsd-324f089ba70fa8756e8dbc96484e36742daf9ec2.tar.xz wireguard-openbsd-324f089ba70fa8756e8dbc96484e36742daf9ec2.zip |
make rc_daemons use start_daemon instead of calling the script directly
-rw-r--r-- | etc/rc | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -# $OpenBSD: rc,v 1.367 2011/07/07 23:53:05 deraadt Exp $ +# $OpenBSD: rc,v 1.368 2011/07/08 00:15:19 robert Exp $ # System startup script run by init on autoboot # or after single-user. @@ -594,7 +594,7 @@ rm -f /etc/rc.firsttime.run if [ -n "${rc_scripts}" ]; then echo -n 'starting package daemons:' for _r in $rc_scripts; do - [ -x /etc/rc.d/${_r} ] && /etc/rc.d/${_r} start + [ -x /etc/rc.d/${_r} ] && start_daemon ${_r} done echo '.' fi |