5 # Location: /usr/local/etc/rc.d/nwfs.sh
7 # Simple script to mount NetWare volumes at startup.
8 # It assumes that all mount points described in fstab file and password
9 # entries listed in /root/.nwfsrc file. See mount_nwfs(8) for details.
14 HOME
=/root
; export HOME
15 vols
="/nw/sys /nw/vol1"
17 if [ "x$1" = "x" -o "x$1" = "xstart" ]; then
18 echo -n "Mounting NetWare volumes: "
19 for vol
in ${vols}; do
24 elif [ "x$1" = "xstop" ]; then
25 echo -n "Unmounting NetWare mount points: "
26 for vol
in ${vols}; do
32 echo "Unknown command $1"