#ident	"@(#)MOUNTFSYS	1.9	93/07/07 SMI"	/* SVr4.0 1.1.4.1	*/

#	Mount file systems

cd /
/sbin/mountall -l

# make sure /usr subtree is present by testing for /usr/sbin
if [ ! -d /usr/sbin ]
then
	echo "/usr sub-tree is not present - changing to single user mode"
	/etc/init S
fi

# Check quotas
# Uncomment the following lines to turn on quota checking
echo 'checking quotas: \c'
quotacheck -a -p
echo 'done.'
quotaon -a

