#!/bin/sh
# 

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

exit 0
