#	iAPX286 @(#)rc2.sh	1.1
#	"Run Commands" executed when the system is changing to init state 2,
#	traditionally called "multi-user".

. /etc/TIMEZONE

#	Pickup start-up packages for mounts, daemons, services, etc.
stty erase "^H" kill "^X" echoe -tabs 2>/dev/null
echo 'The system is coming up. Please wait.'
for f in /etc/rc.d/*
{
	if [ -f ${f} ]
	then
		/bin/sh ${f}
	fi
}
echo 'The system is ready.'
