#!/bin/sh
. /boot.conf
test "$LOG_START" && echo "<*> Executing '$0 $*'"

test "$LOG_STAGE" && echo "* Mounting remote (NFS) file systems"
mount -n -v -a -t nfs \
|| echo "! mount -a -t nfs failure"

test "$LOG_STAGE" && echo "* Mounting remote (SMB) file systems"
mount -n -v -a -t smbfs \
|| echo "! mount -a -t smbfs failure"

test "$LOG_STAGE" && echo "* Mounting remote (NCP) file systems"
mount -n -v -a -t ncpfs \
|| echo "! mount -a -t ncpfs failure"

exit 0
