#!/bin/sh
#
# $Id: nfs-fs,v 4.1 1993/03/23 16:17:10 mike Exp $
#
# Mount and unmount NFS filesystems.

. /etc/init.d/LIB
mount=`pathof mount`
umount=`pathof umount`

case "$1" in
	start)
		mount -avt nfs
		;;

	stop)
		umount -avt nfs
		;;

	*)
		echo "usage: nfs-fs start|stop"
		exit 1
		;;
esac
