#! /bin/sh
#
# mountfsys	Mount all file systems.
#
# Version:	@(#) /etc/init.d/mountfsys 1.01 30-Dec-1993
#
# Author:	Miquel van Smoorenburg, <miquels@drinkel.nl.mugnet.org>
#

  # Source function library.
  . /etc/init.d/functions

  # See how we were called.
  case "$1" in
    start)
	echo "Mounting all file systems"
	mount -a -t nonfs
	;;
    stop)
	echo "Unmounting all file systems"
	umount -a
	;;
    *)
	# Oops someone made a typo.
	echo "Usage: /etc/init.d/skeleton {start|stop}"
	exit 1
  esac

  exit 0
