summaryrefslogtreecommitdiff
path: root/etc/rc.local
blob: 27bcec0d5757b815ccfb3539a8bdbebfe1a7b9c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#	$OpenBSD: rc.local,v 1.42 2011/03/17 16:43:51 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
done

# Add your local startup actions here.

echo '.'