#!/bin/sh
#  -

case "$1" in
start)
	cd /gsw
	./smon 2 ./module
	;;
stop)
	;;
restart)
	;;
*)
	echo "Usage: $0 { start | stop | restart }"
	;;
esac

exit 0
