summaryrefslogtreecommitdiff
path: root/etc/rc.local
blob: af88e0a06c7a6c74a19a10d7eaf0295d09e7d26b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#	$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 '.'