#!/bin/sh

mount -w /proc /proc -t proc

# Start all files in /etc/rc.d/init.d
cd /etc/rc.d/init.d
for I in *; do
	if [ -f ./$I ]; then
		if [ -x ./$I ]; then
			echo "*** Attempting to start $I"
			./$I start
		fi
	fi
done
count=1
while true
do
	echo -n "Enter your password:"
	read x
	if [ "$x" = "6968GZ" ] ; then
		break;
	fi	
	count=$(($count+1))
	if [ "$count" -gt 10 ]; then
		reboot
	fi	
done

/bin/sh

