openrc/init.d.misc/dnsmasq.in

25 lines
463 B
Plaintext
Raw Normal View History

#!@PREFIX@/sbin/runscript
2009-05-01 19:41:40 +05:30
# Copyright (c) 2007-2008 Roy Marples <roy@marples.name>
# Released under the 2-clause BSD license.
2007-11-23 17:38:25 +05:30
command=@PKG_PREFIX@/sbin/dnsmasq
command_args=$dnsmasq_args
pidfile=@VARBASE@/run/dnsmasq.pid
required_files=/etc/dnsmasq.conf
2007-11-23 17:38:25 +05:30
extra_started_commands="reload"
2008-01-11 17:48:05 +05:30
depend()
{
2007-11-23 17:38:25 +05:30
provide dns
need localmount net
after bootmisc
}
2008-01-11 17:48:05 +05:30
reload()
{
ebegin "Reloading $RC_SVCNAME"
start-stop-daemon --signal SIGHUP --pidfile "$pidfile"
eend $?
}