Browse Source

Print the daemon name _before_ starting the corresponding rc script.

"makes sense" schwarze@, ok robert@
OPENBSD_4_9
ajacoutot 14 years ago
parent
commit
4f3be43f84
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/etc/rc.local

+ 2
- 2
src/etc/rc.local View File

@ -1,4 +1,4 @@
# $OpenBSD: rc.local,v 1.40 2010/10/26 20:56:03 robert Exp $
# $OpenBSD: rc.local,v 1.41 2010/11/05 10:03:00 ajacoutot Exp $
# Site-specific startup actions, daemons, and other things which # Site-specific startup actions, daemons, and other things which
# can be done AFTER your system goes into securemode. For actions # can be done AFTER your system goes into securemode. For actions
@ -8,7 +8,7 @@
echo -n 'starting local daemons:' echo -n 'starting local daemons:'
for _r in $rc_scripts; do for _r in $rc_scripts; do
[ -x /etc/rc.d/${_r} ] && /etc/rc.d/${_r} start && echo -n " ${_r}"
[ -x /etc/rc.d/${_r} ] && echo -n " ${_r}" && /etc/rc.d/${_r} start
done done
# Add your local startup actions here. # Add your local startup actions here.


Loading…
Cancel
Save