From 98c76a453222169f12b0e95f8a7ed0175e182598 Mon Sep 17 00:00:00 2001 From: Judd Vinet Date: Mon, 4 Mar 2002 07:28:25 +0000 Subject: Initial revision --- rc.multi | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100755 rc.multi (limited to 'rc.multi') diff --git a/rc.multi b/rc.multi new file mode 100755 index 0000000..c3c48d8 --- /dev/null +++ b/rc.multi @@ -0,0 +1,26 @@ +#!/bin/sh +# +# /etc/rc.multi +# + +. /etc/rc.conf +. /etc/rc.d/functions + +# Start pcmcia +if [ "$PCMCIA" = "yes" -a -f /etc/rc.d/pcmcia ]; then + /etc/rc.d/pcmcia start +fi + +stat_busy "Starting Network" +stat_done + +# Start daemons +for daemon in "${DAEMONS[@]}"; do + /etc/rc.d/$daemon start +done + +if [ -x /etc/rc.local ]; then + /etc/rc.local +fi + +# End of file -- cgit v1.2.3