summaryrefslogtreecommitdiffstats
path: root/init.d/rc.local
blob: ff36d172ff281d4b734acbefb806ce5f25113d6e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/sbin/runscript

start() {
	if [ -f /etc/rc.local ] ; then
		ebegin "Running local boot script /etc/rc.local"
		/etc/rc.local
		eend $?
	fi
}

stop() {
	return 0
}