summaryrefslogtreecommitdiffstats
path: root/package/dnsmasq/S80dnsmasq
blob: 2ff0206be1a02e78eef3b5bf5b926172b777ee6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/bin/sh

[ -x /usr/sbin/dnsmasq ] || exit 0
[ -f /etc/dnsmasq.conf ] || exit 0

case "$1" in
	start)
		echo -n "Starting dnsmasq: "
		start-stop-daemon -S -x /usr/sbin/dnsmasq
		[ $? == 0 ] && echo "OK" || echo "FAIL"
		;;
	stop)
		echo -n "Stopping dnsmasq: "
		start-stop-daemon -K -q -x /usr/sbin/dnsmasq
		[ $? == 0 ] && echo "OK" || echo "FAIL"
		;;
	restart|reload)
		$0 stop
		$0 start
		;;
	*)
		echo "Usage: $0 {start|stop|restart}"
		exit 1
esac

exit 0
OpenPOWER on IntegriCloud