summaryrefslogblamecommitdiff
path: root/games/tetrinet-x/files/tetrinet-x.sh
blob: 74b0aa8748471a39db934a10393f23c9479ab8e6 (plain) (tree)
1
2
         
 















                                                                           
#!/bin/sh

tetrixdir=/usr/local/tetrinet-x
tetrix=tetrix.freebsd

case "$1" in
start)
	[ -x ${tetrixdir}/${tetrix} ] && cd ${tetrixdir} && \
		${tetrixdir}/${tetrix} > /dev/null && echo -n ' tetrinet-x'
	;;
stop)
	killall ${tetrix} && echo -n ' tetrinet-x'
	;;
*)
	echo "Usage: `basename $0` {start|stop}" >&2
	exit 64
	;;
esac