#!/bin/bash

case "$1" in
  start)
	echo -n "Starting Test Monitor..."
  TestCtrl
	;;
  stop)
	echo -n "Stopping Test Monitor..."
	;;
  restart|reload)
	$0 stop
	$0 start
	;;
  *)
	echo "Test Monitor not Started/Stopped"
	exit 1
esac

exit 0
