summaryrefslogtreecommitdiff
path: root/package/dnsmasq/files/dnsmasq.init
blob: be9218bcb08bd1b456bb22d0c2d82b77095d4b09 (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
27
#!/bin/sh
#PKG dnsmasq
#INIT 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 $?