]> pd.if.org Git - startuptools/blob - scripts/rc.multi
added startup scripts
[startuptools] / scripts / rc.multi
1 #!/bin/sh
2
3 . /etc/rc.d/functions.rc
4 . /etc/rc.conf
5
6 for d in $DAEMONS ; do
7         test -x /etc/rc.d/$d && /etc/rc.d/$d start
8 done
9
10 test -x /etc/rc.local && status_begin running rc.local && /etc/rc.local && status_check