[BACK]Return to rc.local CVS log [TXT][DIR] Up to [local] / src / etc

File: [local] / src / etc / Attic / rc.local (download)

Revision 1.41, Fri Nov 5 10:03:00 2010 UTC (13 years, 7 months ago) by ajacoutot
Branch: MAIN
CVS Tags: OPENBSD_4_9_BASE, OPENBSD_4_9
Changes since 1.40: +2 -2 lines

Print the daemon name _before_ starting the corresponding rc script.

"makes sense" schwarze@, ok robert@

#	$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
# which should be done BEFORE your system has gone into securemode
# please see /etc/rc.securelevel.

echo -n 'starting local daemons:'

for _r in $rc_scripts; do
	[ -x /etc/rc.d/${_r} ] && echo -n " ${_r}" && /etc/rc.d/${_r} start
done

# Add your local startup actions here.

echo '.'