From 4f3be43f84ae05b89b15a71e97f77cd666b0d0b6 Mon Sep 17 00:00:00 2001 From: ajacoutot <> Date: Fri, 5 Nov 2010 10:03:00 +0000 Subject: [PATCH] Print the daemon name _before_ starting the corresponding rc script. "makes sense" schwarze@, ok robert@ --- src/etc/rc.local | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/etc/rc.local b/src/etc/rc.local index af88e0a0..a4242ef7 100644 --- a/src/etc/rc.local +++ b/src/etc/rc.local @@ -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 # can be done AFTER your system goes into securemode. For actions @@ -8,7 +8,7 @@ echo -n 'starting local daemons:' 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 # Add your local startup actions here.