2014-03-29 10:01:02 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
[ -x /usr/sbin/dnsmasq ] || exit 0
|
|
|
|
[ -f /etc/dnsmasq.conf ] || exit 0
|
|
|
|
|
|
|
|
case "$1" in
|
|
|
|
start)
|
2015-10-03 23:29:57 +02:00
|
|
|
printf "Starting dnsmasq: "
|
2014-03-29 10:01:02 +01:00
|
|
|
start-stop-daemon -S -x /usr/sbin/dnsmasq
|
2014-10-26 18:41:43 +01:00
|
|
|
[ $? = 0 ] && echo "OK" || echo "FAIL"
|
2014-03-29 10:01:02 +01:00
|
|
|
;;
|
|
|
|
stop)
|
2015-10-03 23:29:57 +02:00
|
|
|
printf "Stopping dnsmasq: "
|
2014-03-29 10:01:02 +01:00
|
|
|
start-stop-daemon -K -q -x /usr/sbin/dnsmasq
|
2014-10-26 18:41:43 +01:00
|
|
|
[ $? = 0 ] && echo "OK" || echo "FAIL"
|
2014-03-29 10:01:02 +01:00
|
|
|
;;
|
|
|
|
restart|reload)
|
|
|
|
$0 stop
|
|
|
|
$0 start
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
echo "Usage: $0 {start|stop|restart}"
|
|
|
|
exit 1
|
|
|
|
esac
|
|
|
|
|
|
|
|
exit 0
|