#!/bin/sh
case "$1" in

    start)
	/sbin/dnsmasq
	;;

    stop)
	echo "Proxy DNS Server Off"
	killall dnsmasq
	if [ "$?" = "0" ]; then echo "Done"
	else                    echo "FAILED"; fi
	;;

    restart)
	;;

    *)
	echo "Usage: $0 (start|stop|restart)"
	exit 1
	;;

esac

exit 0

