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
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')
-rw-r--r--net-dns/rbldnsd/ChangeLog6
-rw-r--r--net-dns/rbldnsd/files/confd-0.99721
-rw-r--r--net-dns/rbldnsd/files/initd-0.99729
3 files changed, 5 insertions, 51 deletions
diff --git a/net-dns/rbldnsd/ChangeLog b/net-dns/rbldnsd/ChangeLog
index 82d8bbbc2e0d..1af342f0b320 100644
--- a/net-dns/rbldnsd/ChangeLog
+++ b/net-dns/rbldnsd/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for net-dns/rbldnsd
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/rbldnsd/ChangeLog,v 1.33 2015/06/29 04:56:49 mjo Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/rbldnsd/ChangeLog,v 1.34 2015/06/29 05:11:30 mjo Exp $
+
+ 29 Jun 2015; Michael Orlitzky <mjo@gentoo.org> -files/confd-0.997,
+ -files/initd-0.997:
+ Remove two now-unused init/conf files.
29 Jun 2015; Michael Orlitzky <mjo@gentoo.org> -rbldnsd-0.997.ebuild,
-rbldnsd-0.997a.ebuild:
diff --git a/net-dns/rbldnsd/files/confd-0.997 b/net-dns/rbldnsd/files/confd-0.997
deleted file mode 100644
index f20b3acdcf53..000000000000
--- a/net-dns/rbldnsd/files/confd-0.997
+++ /dev/null
@@ -1,21 +0,0 @@
-# The addresses on which to listen, as a bash array. The syntax is
-# "host:port", where the port defaults to 53.
-LISTEN=( "127.0.0.1" "192.168.0.1" )
-
-# A list of RBL zones, as a bash array. For the correct syntax, please
-# see the rbldnsd(8) man page. The following $ZONES will look for
-# files named "badguys.example.com" and "spammers.example.net" (in the
-# appropriate format) under /var/db/rbldnsd, and use those same names
-# for the blacklists contained therein.
-ZONES=( "badguys.example.com:ip4set:badguys.example.com"
- "spammers.example.net:ip4tset:spammers.example.net" )
-
-# Add any additional options for the rbldnsd daemon below. The -a and
-# -vv below are suggested for performance/security reasons. They are
-# described in the man page.
-#
-# The rootdir (-r) and PID (-p) options are passed automatically, with
-# rootdir set to /var/db/rbldnsd (where you should put your zone
-# files). The daemon will run as the rbldns user, which was created by
-# portage.
-OPTIONS="-a -vv"
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 $?
-}