#! /bin/sh

action="$1"
shift

case "$action" in
	start)
		mount $@
		;;
	stop)
		umount $@
		;;
	*)
		echo "$0: don't know how to do that. Exiting."
		exit 1
		;;
esac