freebsd-ports/dns/mydns-ng/files/mydns.sh
Anders Nordby 58143feaad Add mydns, the MySQL DNS server.
PR:		41132
Submitted by:	Simon Dick <simond@irrelevant.org>
2002-08-05 23:35:09 +00:00

17 lines
201 B
Bash

#!/bin/sh
case "$1" in
start)
%%%PREFIX%%%/sbin/mydns -b
;;
stop)
kill `cat /var/run/mydns.pid`
;;
*)
echo ""
echo "Usage: `basename $0` { start | stop }"
echo ""
exit 64
;;
esac