#!/bin/sh

case "${1}" in
	start)
		mount -a
		;;
	stop)
		umount -a -r
		;;
esac