#! /bin/sh
start() {
	echo -n "Starting QuickML services: "
	/usr/pkg/sbin/quickml
	echo
}

stop() {
	echo -n "Stopping QuickML services: "
	kill `cat /var/run/quickml.pid`
	echo
}

case "$1" in
  start)
	start
	;;
  stop)
	stop
	;;
  restart)
	stop
	sleep 1
	start
	;;
  *)
	echo "Usage: quickml-ctl {start|stop|restart}"
	exit 1
esac

exit 0
