summaryrefslogtreecommitdiff
path: root/init.d.misc/dnsmasq.in
blob: fa57164baea542d185c4efdaf9933685b6f76bea (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
#!@SBINDIR@/openrc-run
# Copyright (c) 2007-2008 Roy Marples <roy@marples.name>
# Released under the 2-clause BSD license.

command=@PKG_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 $RC_SVCNAME"
	start-stop-daemon --signal SIGHUP --pidfile "$pidfile"
	eend $?
}