diff options
author | Leonardo Arena <rnalrd@gmail.com> | 2009-07-27 06:39:43 +0000 |
---|---|---|
committer | Leonardo Arena <rnalrd@gmail.com> | 2009-07-27 06:39:43 +0000 |
commit | c66164b230fc33d7a903bbd1da6f803c2cadd0e2 (patch) | |
tree | 5b2c145554a597182448ac64167be76fd904d392 /extra/dnsmasq/dnsmasq.initd | |
parent | aad5f530b5a45159e9420d654173345006bde998 (diff) | |
parent | db7bf56b641e8ebb35d6f24ca8bca0b3b9e45c19 (diff) | |
download | aports-c66164b230fc33d7a903bbd1da6f803c2cadd0e2.tar.bz2 aports-c66164b230fc33d7a903bbd1da6f803c2cadd0e2.tar.xz |
Merge branch 'master' of git://dev.alpinelinux.org/aports
Diffstat (limited to 'extra/dnsmasq/dnsmasq.initd')
-rw-r--r-- | extra/dnsmasq/dnsmasq.initd | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/extra/dnsmasq/dnsmasq.initd b/extra/dnsmasq/dnsmasq.initd deleted file mode 100644 index 44109e982..000000000 --- a/extra/dnsmasq/dnsmasq.initd +++ /dev/null @@ -1,38 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2004 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.13 2008/01/29 15:06:30 flameeyes Exp $ - -opts="reload" - -depend() { - provide dns - need localmount net - after bootmisc -} - -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 $? -} |