# $OpenBSD: rc.local,v 1.40 2010/10/26 20:56:03 robert 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} ] && /etc/rc.d/${_r} start && echo -n " ${_r}" done # Add your local startup actions here. echo '.'