#!/bin/sh

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

exit 0
