#!/bin/sh

#######################################
## SRB2WII INITIALISATION RUNLEVEL 1 ##
#######################################

## Released under the GNU General Public License (version 2 or above)

## Any lines in this file preceeded by a hash ('#') indicates a comment, and is not read by the interpreter.

#--------------------#
. /etc/profile
LOGFILE="$LOGDIR/$ME.log"
. /tmp/exports
#--------------------#

ls /etc/rc1.d > /tmp/rc1
while read service
do
	loadfile /etc/rc1.d/$service start 1
done < /tmp/rc1
