diff options
author | Michael Orlitzky <mjo@gentoo.org> | 2015-09-27 09:18:40 -0400 |
---|---|---|
committer | Michael Orlitzky <mjo@gentoo.org> | 2015-09-27 09:18:56 -0400 |
commit | f777c44ad2cc10e275fe56a01fb74db290b047e4 (patch) | |
tree | 278efc43c01ec2791112dcef5098c6a545a4a5ab /net-dns/rbldnsd/files | |
parent | Merge remote-tracking branch 'github/pr/135' (diff) | |
download | gentoo-f777c44ad2cc10e275fe56a01fb74db290b047e4.tar.gz gentoo-f777c44ad2cc10e275fe56a01fb74db290b047e4.tar.bz2 gentoo-f777c44ad2cc10e275fe56a01fb74db290b047e4.zip |
net-dns/rbldnsd: remove old versions and files.
Package-Manager: portage-2.2.20.1
Diffstat (limited to 'net-dns/rbldnsd/files')
-rw-r--r-- | net-dns/rbldnsd/files/confd | 20 | ||||
-rw-r--r-- | net-dns/rbldnsd/files/example | 23 | ||||
-rw-r--r-- | net-dns/rbldnsd/files/initd | 20 | ||||
-rw-r--r-- | net-dns/rbldnsd/files/rbldnsd-0.996b-asneeded.patch | 11 |
4 files changed, 0 insertions, 74 deletions
diff --git a/net-dns/rbldnsd/files/confd b/net-dns/rbldnsd/files/confd deleted file mode 100644 index ccbe1e91da0d..000000000000 --- a/net-dns/rbldnsd/files/confd +++ /dev/null @@ -1,20 +0,0 @@ -# -# options for rbldnsd -# -# for initial testing, copy example zone file to /var/db/rbldnsd -# NOTE: make sure nothing listens on 127.0.0.1:53 -# -# OPTIONS="-q -r /var/db/rbldnsd -b 127.0.0.1 \ -# -u rbldns -p /var/run/rbldnsd.pid \ -# rbl.example.com:ip4set:example" - -# check if it works by executing -# dig @localhost 1.0.0.127.rbl.example.com. any -# - or - -# host -a 1.0.0.127.rbl.example.com. localhost - -# the result should include something like - -# ANSWER SECTION: -# 1.0.0.127.rbl.example.com. 2100 IN A 127.0.0.2 -# 1.0.0.127.rbl.example.com. 2100 IN TXT "spam received, see http://rbl.example.com/lookup?127.0.0.1" diff --git a/net-dns/rbldnsd/files/example b/net-dns/rbldnsd/files/example deleted file mode 100644 index ab3458edd26a..000000000000 --- a/net-dns/rbldnsd/files/example +++ /dev/null @@ -1,23 +0,0 @@ -# SOA and NS record -$SOA 1800 rbl.example.com abuse.example.com 0 600 600 86400 600 - -# note: NS record should have reasonably longer TTL -$NS 86400 rbl.example.com - -# default value if LHS of key is omitted: -:127.0.0.2:spam received, see http://rbl.example.com/lookup?$ - -# a key without value: returns the default value above -127.0.0.1 - -# CIDR notation: -10.200/16 - -# without netmask, it works as well: same as 10.201/16 -10.201 - -# whitelisting: -!10.202.0.1 - -# domain-based DNSBL: -evil.example.com diff --git a/net-dns/rbldnsd/files/initd b/net-dns/rbldnsd/files/initd deleted file mode 100644 index 29de0001f073..000000000000 --- a/net-dns/rbldnsd/files/initd +++ /dev/null @@ -1,20 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2002 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later - -depend() { - need net -} - -start() { - ebegin "Starting rbldnsd-server" - start-stop-daemon --start --quiet --pidfile /var/run/rbldnsd.pid --exec /usr/sbin/rbldnsd -- ${OPTIONS} - eend $? -} - -stop() { - ebegin "Stopping rbldnsd-server" - start-stop-daemon --stop --quiet --pidfile /var/run/rbldnsd.pid --exec /usr/sbin/rbldnsd - eend $? -} - diff --git a/net-dns/rbldnsd/files/rbldnsd-0.996b-asneeded.patch b/net-dns/rbldnsd/files/rbldnsd-0.996b-asneeded.patch deleted file mode 100644 index 77af1d915928..000000000000 --- a/net-dns/rbldnsd/files/rbldnsd-0.996b-asneeded.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- configure.lib.orig 2009-01-04 16:52:52.112984801 +0100 -+++ configure.lib 2009-01-04 16:53:07.680980305 +0100 -@@ -105,7 +105,7 @@ - # run a compiler - ac_run_compiler() { - rm -f conftest*; cat >conftest.c -- ac_run $CC $CFLAGS "$@" conftest.c -+ ac_run $CC $CFLAGS conftest.c "$@" - } - - ac_compile() { |