summaryrefslogtreecommitdiff
path: root/init.d.misc/dnsmasq.in
blob: 21ce6f58f3ce0350470e33bd46040b593a85cc2d (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
#!/sbin/runscript
# Copyright 2007-2008 Roy Marples
# All rights reserved

command=@PREFIX@/sbin/dnsmasq
command_args=${dnsmasq_args}
pidfile=@VARBASE@/run/dnsmasq.pid
required_files=/etc/dnsmasq.conf

extra_started_commands="reload"

depend()
{	
	provide dns
	need localmount net
	after bootmisc
}

reload()
{
	ebegin "Reloading ${SVCNAME}"
	start-stop-daemon --signal SIGHUP --pidfile "${pidfile}"
	eend $?
}