summaryrefslogtreecommitdiff
path: root/package/dnsmasq/files/dnsmasq.init
blob: e92ad3acceefef1bee7c3b69dc4116ce6da8cc3a (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
#FWINIT 50
. /etc/rc.conf

case $1 in
(autostop) ;;
(autostart)
	[[ $dns_dhcp = NO ]] && exit 0
	exec sh $0 start
	;;
start)
	[ -f /etc/dnsmasq.conf ] || exit
	/usr/sbin/dnsmasq
	;;
(stop)
	killall dnsmasq
	;;
(restart)
	sh $0 stop
	sh $0 start
	;;
(*)
	echo "Usage: $0 {start | stop | restart}"
	;;
esac
exit $?