summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Orlitzky <mjo@gentoo.org>2015-06-29 05:11:30 +0000
committerMichael Orlitzky <mjo@gentoo.org>2015-06-29 05:11:30 +0000
commita23e468a7a11640aa34eb96127b1e32aa1c18670 (patch)
tree9bf4b6d29b1486806bce7da7f9a71279c2098619 /net-dns/rbldnsd/files/initd-0.997
parentRemove two old versions. (diff)
downloadgentoo-2-a23e468a7a11640aa34eb96127b1e32aa1c18670.tar.gz
gentoo-2-a23e468a7a11640aa34eb96127b1e32aa1c18670.tar.bz2
gentoo-2-a23e468a7a11640aa34eb96127b1e32aa1c18670.zip
Remove two now-unused init/conf files.
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 0x6F48D3DA05C2DADB!)
Diffstat (limited to 'net-dns/rbldnsd/files/initd-0.997')
-rw-r--r--net-dns/rbldnsd/files/initd-0.99729
1 files changed, 0 insertions, 29 deletions
diff --git a/net-dns/rbldnsd/files/initd-0.997 b/net-dns/rbldnsd/files/initd-0.997
deleted file mode 100644
index 272b1903a06f..000000000000
--- a/net-dns/rbldnsd/files/initd-0.997
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/sbin/runscript
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/rbldnsd/files/initd-0.997,v 1.1 2013/07/08 17:08:52 xmw Exp $
-
-depend() {
- need net
-}
-
-start() {
- ebegin "Starting rbldnsd"
-
- start-stop-daemon --start --quiet --pidfile /run/rbldnsd.pid \
- --exec /usr/sbin/rbldnsd -- \
- -r /var/db/rbldnsd \
- -p /run/rbldnsd.pid \
- ${LISTEN[@]/#/-b} \
- ${OPTIONS} \
- "${ZONES[@]}"
-
- eend $?
-}
-
-stop() {
- ebegin "Stopping rbldnsd"
- start-stop-daemon --stop --quiet --pidfile /run/rbldnsd.pid \
- --exec /usr/sbin/rbldnsd
- eend $?
-}