summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'net-dns/dnsmasq/files/dnsmasq-init')
-rw-r--r--net-dns/dnsmasq/files/dnsmasq-init39
1 files changed, 0 insertions, 39 deletions
diff --git a/net-dns/dnsmasq/files/dnsmasq-init b/net-dns/dnsmasq/files/dnsmasq-init
deleted file mode 100644
index b3d19c1..0000000
--- a/net-dns/dnsmasq/files/dnsmasq-init
+++ /dev/null
@@ -1,39 +0,0 @@
-#!/sbin/runscript
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License, v2 or later
-# $Header: /var/cvsroot/gentoo-x86/net-dns/dnsmasq/files/dnsmasq-init,v 1.14 2010/11/19 16:04:20 chutzpah Exp $
-
-opts="reload"
-
-depend() {
- provide dns
- need localmount net
- after bootmisc
- use logger
-}
-
-start() {
- ebegin "Starting ${SVCNAME}"
- start-stop-daemon --start --exec /usr/sbin/dnsmasq \
- --pidfile /var/run/dnsmasq.pid \
- -- -x /var/run/dnsmasq.pid ${DNSMASQ_OPTS}
- eend $?
-}
-
-stop() {
- ebegin "Stopping ${SVCNAME}"
- start-stop-daemon --stop --exec /usr/sbin/dnsmasq \
- --pidfile /var/run/dnsmasq.pid
- eend $?
-}
-
-reload() {
- ebegin "Reloading ${SVCNAME}"
- if ! service_started "${SVCNAME}" ; then
- eend 1 "${SVCNAME} is not started"
- return 1
- fi
- start-stop-daemon --stop --oknodo --signal HUP \
- --exec /usr/sbin/dnsmasq --pidfile /var/run/dnsmasq.pid
- eend $?
-}