[-]
[+]
|
Added |
pdns-recursor.changes
|
|
[-]
[+]
|
Changed |
pdns-recursor.spec
^
|
|
[-]
[+]
|
Changed |
371_372.diff
^
|
@@ -1,24 +1,278 @@
-Index: recursor_cache.cc
-===================================================================
---- recursor_cache.cc.orig 2006-11-12 17:56:13.000000000 +0100
-+++ recursor_cache.cc 2007-02-27 21:44:27.347571093 +0100
-@@ -9,9 +9,17 @@ using namespace std;
- using namespace boost;
-
- #include "config.h"
--
--#ifdef GCC_SKIP_LOCKING
-+#if !(__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 2)) && defined(GCC_SKIP_LOCKING)
-+#warning "using the optimized locking code on older gcc"
-+#if HAVE_BITS_ATOMICITY_H
- #include <bits/atomicity.h>
-+#endif
-+/*
-+this is just a reminder. in gcc 4.2 it seems atomicity.h was moved under ext/
-+#if HAVE_EXT_ATOMICITY_H
-+#include <ext/atomicity.h>
-+#endif
-+*/
- // This code is ugly but does speedup the recursor tremendously on multi-processor systems, and even has a large effect (20, 30%) on uniprocessor
- namespace __gnu_cxx
+diff -uNr pdns-recursor-3.7.1/build-scripts/redhat/pdns-recursor-test.spec pdns-recursor-3.7.2/build-scripts/redhat/pdns-recursor-test.spec
+--- pdns-recursor-3.7.1/build-scripts/redhat/pdns-recursor-test.spec 2015-02-12 11:16:00.000000000 +0100
++++ pdns-recursor-3.7.2/build-scripts/redhat/pdns-recursor-test.spec 2015-04-21 15:02:57.000000000 +0200
+@@ -9,7 +9,7 @@
+ Epoch: 0
+ Group: System Environment/Daemons
+ License: GPL
+-Source: http://downloads.powerdns.com/releases/%{name}-3.7.1.tar.bz2
++Source: http://downloads.powerdns.com/releases/%{name}-3.7.2.tar.bz2
+
+ BuildRequires: boost-devel >= 1.39.0
+ BuildRequires: lua-devel >= 5.3
+@@ -20,7 +20,7 @@
+ PowerDNS recursor
+
+ %prep
+-%setup -q -n %{name}-3.7.1
++%setup -q -n %{name}-3.7.2
+
+ %build
+ %configure
+diff -uNr pdns-recursor-3.7.1/config.h pdns-recursor-3.7.2/config.h
+--- pdns-recursor-3.7.1/config.h 2015-02-12 11:16:00.000000000 +0100
++++ pdns-recursor-3.7.2/config.h 2015-04-21 15:02:57.000000000 +0200
+@@ -1,4 +1,4 @@
+ #define RECURSOR
+-#define VERSION "3.7.1"
++#define VERSION "3.7.2"
+ #define DIST_HOST "jenkins@autotest.powerdns.com"
+ #define HAVE_BOOST 1
+diff -uNr pdns-recursor-3.7.1/configure pdns-recursor-3.7.2/configure
+--- pdns-recursor-3.7.1/configure 2015-02-12 11:16:00.000000000 +0100
++++ pdns-recursor-3.7.2/configure 2015-04-21 15:02:57.000000000 +0200
+@@ -1,6 +1,10 @@
+ #!/bin/sh
+ set -e
+
++if [ "$HARDENING" = "" ]; then
++ HARDENING="yes"
++fi
++
+ if [ "$CXX" = "" ]; then
+ CXX="g++"
+ fi
+@@ -46,8 +50,8 @@
+ EOF
+
+ # test for PIE
+- if $CXX $src -c -o a.out -fPIE -DPIE; then
+- if [ "$STATIC" != "semi" ] && [ "$STATIC" != "full" ] && $CXX -pie -o a2.out a.out; then
++ if $CXX $src -c -o a.out -fPIE -DPIE 2>/dev/null; then
++ if [ "$STATIC" != "semi" ] && [ "$STATIC" != "full" ] && $CXX -pie -o a2.out a.out 2>/dev/null; then
+ CF_PIE="-fPIE -DPIE"
+ LD_PIE="-pie"
+ fi
+@@ -69,7 +73,9 @@
+ rm -f $src a.out a2.out
+ }
+
+-test_flags
++if [ "$HARDENING" != "no" ]; then
++ test_flags
++fi
+
+ sed -e "s/@LD_RELRO@/$LD_RELRO/g" -e "s/@LD_PIE@/$LD_PIE/g" -e "s/@CF_PIE@/$CF_PIE/g" -e "s/@CF_FORTIFY@/$CF_FORTIFY/g" -e "s/@CF_STACK@/$CF_STACK/g" < Makefile.in > Makefile
+
+diff -uNr pdns-recursor-3.7.1/contrib/systemd-pdns-recursor.service pdns-recursor-3.7.2/contrib/systemd-pdns-recursor.service
+--- pdns-recursor-3.7.1/contrib/systemd-pdns-recursor.service 2015-02-12 11:16:00.000000000 +0100
++++ pdns-recursor-3.7.2/contrib/systemd-pdns-recursor.service 2015-04-21 15:02:57.000000000 +0200
+@@ -1,7 +1,8 @@
+ [Unit]
+ Description=PowerDNS recursing nameserver
+ Documentation=man:pdns_recursor(1) man:rec_control(1)
+-Wants=network-online.target
++Wants=network-online.target nss-lookup.target
++Before=nss-lookup.target
+ After=network-online.target
+
+ [Service]
+diff -uNr pdns-recursor-3.7.1/dnsparser.cc pdns-recursor-3.7.2/dnsparser.cc
+--- pdns-recursor-3.7.1/dnsparser.cc 2015-02-12 11:16:00.000000000 +0100
++++ pdns-recursor-3.7.2/dnsparser.cc 2015-04-21 15:02:57.000000000 +0200
+@@ -455,9 +455,10 @@
+
+ void PacketReader::getLabelFromContent(const vector<uint8_t>& content, uint16_t& frompos, string& ret, int recurs)
+ {
+- if(recurs > 1000) // the forward reference-check below should make this test 100% obsolete
++ if(recurs > 100) // the forward reference-check below should make this test 100% obsolete
+ throw MOADNSException("Loop");
+ // it is tempting to call reserve on ret, but it turns out it creates a malloc/free storm in the loop
++ int pos = frompos;
+ for(;;) {
+ unsigned char labellen=content.at(frompos++);
+
+@@ -470,7 +471,7 @@
+ uint16_t offset=256*(labellen & ~0xc0) + (unsigned int)content.at(frompos++) - sizeof(dnsheader);
+ // cout<<"This is an offset, need to go to: "<<offset<<endl;
+
+- if(offset >= frompos-2)
++ if(offset >= pos)
+ throw MOADNSException("forward reference during label decompression");
+ return getLabelFromContent(content, offset, ret, ++recurs);
+ }
+diff -uNr pdns-recursor-3.7.1/iputils.cc pdns-recursor-3.7.2/iputils.cc
+--- pdns-recursor-3.7.1/iputils.cc 2015-02-12 11:16:00.000000000 +0100
++++ pdns-recursor-3.7.2/iputils.cc 2015-04-21 15:02:57.000000000 +0200
+@@ -115,6 +115,7 @@
+ return false;
+ }
+
++// FIXME: this function is unused, and using it could reduce some code duplication
+ int sendfromto(int sock, const char* data, int len, int flags, const ComboAddress& from, const ComboAddress& to)
+ {
+ struct msghdr msgh;
+@@ -133,11 +134,15 @@
+ if(from.sin4.sin_family) {
+ addCMsgSrcAddr(&msgh, cbuf, &from);
+ }
++ else {
++ msgh.msg_control=NULL;
++ }
+ return sendmsg(sock, &msgh, flags);
+ }
+
+ // be careful: when using this for receive purposes, make sure addr->sin4.sin_family is set appropriately so getSocklen works!
+ // be careful: when using this function for *send* purposes, be sure to set cbufsize to 0!
++// be careful: if you don't call addCMsgSrcAddr after fillMSGHdr, make sure to set msg_control to NULL
+ void fillMSGHdr(struct msghdr* msgh, struct iovec* iov, char* cbuf, size_t cbufsize, char* data, size_t datalen, ComboAddress* addr)
{
+ iov->iov_base = data;
+diff -uNr pdns-recursor-3.7.1/pdns_recursor.cc pdns-recursor-3.7.2/pdns_recursor.cc
+--- pdns-recursor-3.7.1/pdns_recursor.cc 2015-02-12 11:16:00.000000000 +0100
++++ pdns-recursor-3.7.2/pdns_recursor.cc 2015-04-21 15:02:57.000000000 +0200
+@@ -688,6 +688,8 @@
+ fillMSGHdr(&msgh, &iov, cbuf, 0, (char*)&*packet.begin(), packet.size(), &dc->d_remote);
+ if(dc->d_local.sin4.sin_family)
+ addCMsgSrcAddr(&msgh, cbuf, &dc->d_local);
++ else
++ msgh.msg_control=NULL;
+ sendmsg(dc->d_socket, &msgh, 0);
+ if(!SyncRes::s_nopacketcache && !variableAnswer ) {
+ t_packetCache->insertResponsePacket(string((const char*)&*packet.begin(), packet.size()),
+@@ -961,6 +963,9 @@
+ if(destaddr.sin4.sin_family) {
+ addCMsgSrcAddr(&msgh, cbuf, &destaddr);
+ }
++ else {
++ msgh.msg_control=NULL;
++ }
+ sendmsg(fd, &msgh, 0);
+
+ if(response.length() >= sizeof(struct dnsheader)) {
+diff -uNr pdns-recursor-3.7.1/README pdns-recursor-3.7.2/README
+--- pdns-recursor-3.7.1/README 2015-02-12 11:16:00.000000000 +0100
++++ pdns-recursor-3.7.2/README 2015-04-21 15:02:57.000000000 +0200
+@@ -2,7 +2,9 @@
+ -------------
+ For full details, please read:
+
+- http://doc.powerdns.com/built-in-recursor.html
++ https://doc.powerdns.com/md/recursor/
++
++Here follow some brief notes that may be useful to get you going.
+
+ COMPILING
+ ---------
+@@ -14,76 +16,29 @@
+ You only need to download it, there is no need to compile.
+
+ On most modern UNIX distributions, you can simply install 'boost' or
+-'boost-dev' or 'boost-devel'. If you don't have that option, or don't want
+-to use it, try:
+-
+-1) head to http://sourceforge.net/project/showfiles.php?group_id=7586 and
+-download the latest boost tar.bz2 or tar.gz, perhaps from:
+-http://downloads.sourceforge.net/project/boost/boost/1.39.0/boost_1_39_0.tar.bz2?use_mirror=ovh
|
[-]
[+]
|
Deleted |
pdns-recursor-3.1.5-strip.patch
^
|
@@ -1,13 +0,0 @@
---- Makefile
-+++ Makefile
-@@ -54,10 +54,8 @@
- install: all
- -mkdir -p $(DESTDIR)/$(SBINDIR)
- mv pdns_recursor $(DESTDIR)/$(SBINDIR)
-- strip $(DESTDIR)/$(SBINDIR)/pdns_recursor
- mkdir -p $(DESTDIR)/$(BINDIR)
- mv rec_control $(DESTDIR)/$(BINDIR)
-- strip $(DESTDIR)/$(BINDIR)/rec_control
- -mkdir -p $(DESTDIR)/$(CONFIGDIR)
- $(DESTDIR)/$(SBINDIR)/pdns_recursor --config > $(DESTDIR)/$(CONFIGDIR)/recursor.conf-dist
- -mkdir -p $(DESTDIR)/usr/share/man/man1
|
[-]
[+]
|
Deleted |
pdns-recursor-3.1.5_config.patch
^
|
@@ -1,12 +0,0 @@
-Index: config.h
-===================================================================
---- config.h.orig
-+++ config.h
-@@ -1,5 +1,5 @@
--#define SYSCONFDIR "/etc/powerdns/"
--#define LOCALSTATEDIR "/var/run/"
-+#define SYSCONFDIR "/etc/pdns/"
-+#define LOCALSTATEDIR "/var/run/pdns/"
- #define VERSION "3.1.5"
- #define RECURSOR
- #ifndef WIN32
|
[-]
[+]
|
Deleted |
pdns-recursor-3.1.6-strip.patch
^
|
@@ -1,13 +0,0 @@
---- Makefile
-+++ Makefile
-@@ -54,10 +54,8 @@
- install: all
- -mkdir -p $(DESTDIR)/$(SBINDIR)
- mv pdns_recursor $(DESTDIR)/$(SBINDIR)
-- strip $(DESTDIR)/$(SBINDIR)/pdns_recursor
- mkdir -p $(DESTDIR)/$(BINDIR)
- mv rec_control $(DESTDIR)/$(BINDIR)
-- strip $(DESTDIR)/$(BINDIR)/rec_control
- -mkdir -p $(DESTDIR)/$(CONFIGDIR)
- $(DESTDIR)/$(SBINDIR)/pdns_recursor --config > $(DESTDIR)/$(CONFIGDIR)/recursor.conf-dist
- -mkdir -p $(DESTDIR)/usr/share/man/man1
|
[-]
[+]
|
Deleted |
pdns-recursor-3.1.6_atomicity.patch
^
|
@@ -1,24 +0,0 @@
-Index: recursor_cache.cc
-===================================================================
---- recursor_cache.cc.orig 2006-11-12 17:56:13.000000000 +0100
-+++ recursor_cache.cc 2007-02-27 21:44:27.347571093 +0100
-@@ -9,9 +9,17 @@ using namespace std;
- using namespace boost;
-
- #include "config.h"
--
--#ifdef GCC_SKIP_LOCKING
-+#if !(__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 2)) && defined(GCC_SKIP_LOCKING)
-+#warning "using the optimized locking code on older gcc"
-+#if HAVE_BITS_ATOMICITY_H
- #include <bits/atomicity.h>
-+#endif
-+/*
-+this is just a reminder. in gcc 4.2 it seems atomicity.h was moved under ext/
-+#if HAVE_EXT_ATOMICITY_H
-+#include <ext/atomicity.h>
-+#endif
-+*/
- // This code is ugly but does speedup the recursor tremendously on multi-processor systems, and even has a large effect (20, 30%) on uniprocessor
- namespace __gnu_cxx
- {
|
[-]
[+]
|
Deleted |
pdns-recursor-3.1.6_config.patch
^
|
@@ -1,12 +0,0 @@
-Index: config.h
-===================================================================
---- config.h.orig
-+++ config.h
-@@ -1,5 +1,5 @@
--#define SYSCONFDIR "/etc/powerdns/"
--#define LOCALSTATEDIR "/var/run/"
-+#define SYSCONFDIR "/etc/pdns/"
-+#define LOCALSTATEDIR "/var/run/pdns/"
- #define VERSION "3.1.6"
- #define RECURSOR
- #ifndef WIN32
|
[-]
[+]
|
Deleted |
pdns-recursor-3.1.7-makefile.patch
^
|
@@ -1,13 +0,0 @@
---- Makefile.orig 2008-06-28 14:43:11.000000000 +0200
-+++ Makefile 2008-06-28 14:43:58.000000000 +0200
-@@ -42,7 +42,9 @@
- STATICFLAGS=-Wl,-Bstatic -lstdc++ $(LUALIBS) -lgcc -Wl,-Bdynamic -static-libgcc -lm -lc
- LINKCC=$(CC)
- LDFLAGS += malloc.o -ldl -lm
--else ifeq ($(STATIC),full)
-+endif
-+
-+ifeq ($(STATIC),full)
- STATICFLAGS=-lstdc++ $(LUALIBS) -ldl -lm -static
- LINKCC=$(CC)
- else
|
[-]
[+]
|
Deleted |
pdns-recursor-3.1.7-strip.patch
^
|
@@ -1,13 +0,0 @@
---- Makefile
-+++ Makefile
-@@ -54,10 +54,8 @@
- install: all
- -mkdir -p $(DESTDIR)/$(SBINDIR)
- mv pdns_recursor $(DESTDIR)/$(SBINDIR)
-- strip $(DESTDIR)/$(SBINDIR)/pdns_recursor
- mkdir -p $(DESTDIR)/$(BINDIR)
- mv rec_control $(DESTDIR)/$(BINDIR)
-- strip $(DESTDIR)/$(BINDIR)/rec_control
- -mkdir -p $(DESTDIR)/$(CONFIGDIR)
- $(DESTDIR)/$(SBINDIR)/pdns_recursor --config > $(DESTDIR)/$(CONFIGDIR)/recursor.conf-dist
- -mkdir -p $(DESTDIR)/usr/share/man/man1
|
[-]
[+]
|
Deleted |
pdns-recursor-3.1.7.1-makefile.patch
^
|
@@ -1,13 +0,0 @@
---- Makefile.orig 2008-06-28 14:43:11.000000000 +0200
-+++ Makefile 2008-06-28 14:43:58.000000000 +0200
-@@ -42,7 +42,9 @@
- STATICFLAGS=-Wl,-Bstatic -lstdc++ $(LUALIBS) -lgcc -Wl,-Bdynamic -static-libgcc -lm -lc
- LINKCC=$(CC)
- LDFLAGS += malloc.o -ldl -lm
--else ifeq ($(STATIC),full)
-+endif
-+
-+ifeq ($(STATIC),full)
- STATICFLAGS=-lstdc++ $(LUALIBS) -ldl -lm -static
- LINKCC=$(CC)
- else
|
[-]
[+]
|
Deleted |
pdns-recursor-3.1.7.1-strip.patch
^
|
@@ -1,13 +0,0 @@
---- Makefile
-+++ Makefile
-@@ -54,10 +54,8 @@
- install: all
- -mkdir -p $(DESTDIR)/$(SBINDIR)
- mv pdns_recursor $(DESTDIR)/$(SBINDIR)
-- strip $(DESTDIR)/$(SBINDIR)/pdns_recursor
- mkdir -p $(DESTDIR)/$(BINDIR)
- mv rec_control $(DESTDIR)/$(BINDIR)
-- strip $(DESTDIR)/$(BINDIR)/rec_control
- -mkdir -p $(DESTDIR)/$(CONFIGDIR)
- $(DESTDIR)/$(SBINDIR)/pdns_recursor --config > $(DESTDIR)/$(CONFIGDIR)/recursor.conf-dist
- -mkdir -p $(DESTDIR)/usr/share/man/man1
|
[-]
[+]
|
Deleted |
pdns-recursor-3.1.7.1_atomicity.patch
^
|
@@ -1,24 +0,0 @@
-Index: recursor_cache.cc
-===================================================================
---- recursor_cache.cc.orig 2006-11-12 17:56:13.000000000 +0100
-+++ recursor_cache.cc 2007-02-27 21:44:27.347571093 +0100
-@@ -9,9 +9,17 @@ using namespace std;
- using namespace boost;
-
- #include "config.h"
--
--#ifdef GCC_SKIP_LOCKING
-+#if !(__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 2)) && defined(GCC_SKIP_LOCKING)
-+#warning "using the optimized locking code on older gcc"
-+#if HAVE_BITS_ATOMICITY_H
- #include <bits/atomicity.h>
-+#endif
-+/*
-+this is just a reminder. in gcc 4.2 it seems atomicity.h was moved under ext/
-+#if HAVE_EXT_ATOMICITY_H
-+#include <ext/atomicity.h>
-+#endif
-+*/
- // This code is ugly but does speedup the recursor tremendously on multi-processor systems, and even has a large effect (20, 30%) on uniprocessor
- namespace __gnu_cxx
- {
|
[-]
[+]
|
Deleted |
pdns-recursor-3.1.7.1_config.patch
^
|
@@ -1,10 +0,0 @@
---- config.h.orig 2009-08-02 22:22:51.000000000 +0200
-+++ config.h 2009-08-03 09:16:59.000000000 +0200
-@@ -1,5 +1,5 @@
--#define SYSCONFDIR "/etc/powerdns/"
--#define LOCALSTATEDIR "/var/run/"
-+#define SYSCONFDIR "/etc/pdns/"
-+#define LOCALSTATEDIR "/var/run/pdns/"
- #define VERSION "3.1.7.1"
- #define RECURSOR
- #ifndef WIN32
|
[-]
[+]
|
Deleted |
pdns-recursor-3.1.7.2-strip.patch
^
|
@@ -1,13 +0,0 @@
---- Makefile
-+++ Makefile
-@@ -54,10 +54,8 @@
- install: all
- -mkdir -p $(DESTDIR)/$(SBINDIR)
- mv pdns_recursor $(DESTDIR)/$(SBINDIR)
-- strip $(DESTDIR)/$(SBINDIR)/pdns_recursor
- mkdir -p $(DESTDIR)/$(BINDIR)
- mv rec_control $(DESTDIR)/$(BINDIR)
-- strip $(DESTDIR)/$(BINDIR)/rec_control
- -mkdir -p $(DESTDIR)/$(CONFIGDIR)
- $(DESTDIR)/$(SBINDIR)/pdns_recursor --config > $(DESTDIR)/$(CONFIGDIR)/recursor.conf-dist
- -mkdir -p $(DESTDIR)/usr/share/man/man1
|
[-]
[+]
|
Deleted |
pdns-recursor-3.1.7.2_atomicity.patch
^
|
@@ -1,24 +0,0 @@
-Index: recursor_cache.cc
-===================================================================
---- recursor_cache.cc.orig 2006-11-12 17:56:13.000000000 +0100
-+++ recursor_cache.cc 2007-02-27 21:44:27.347571093 +0100
-@@ -9,9 +9,17 @@ using namespace std;
- using namespace boost;
-
- #include "config.h"
--
--#ifdef GCC_SKIP_LOCKING
-+#if !(__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 2)) && defined(GCC_SKIP_LOCKING)
-+#warning "using the optimized locking code on older gcc"
-+#if HAVE_BITS_ATOMICITY_H
- #include <bits/atomicity.h>
-+#endif
-+/*
-+this is just a reminder. in gcc 4.2 it seems atomicity.h was moved under ext/
-+#if HAVE_EXT_ATOMICITY_H
-+#include <ext/atomicity.h>
-+#endif
-+*/
- // This code is ugly but does speedup the recursor tremendously on multi-processor systems, and even has a large effect (20, 30%) on uniprocessor
- namespace __gnu_cxx
- {
|
[-]
[+]
|
Deleted |
pdns-recursor-3.1.7.2_config.patch
^
|
@@ -1,10 +0,0 @@
---- config.h.orig 2009-08-02 22:22:51.000000000 +0200
-+++ config.h 2009-08-03 09:16:59.000000000 +0200
-@@ -1,5 +1,5 @@
--#define SYSCONFDIR "/etc/powerdns/"
--#define LOCALSTATEDIR "/var/run/"
-+#define SYSCONFDIR "/etc/pdns/"
-+#define LOCALSTATEDIR "/var/run/pdns/"
- #define VERSION "3.1.7.2"
- #define RECURSOR
- #ifndef WIN32
|
[-]
[+]
|
Deleted |
pdns-recursor-3.1.7_atomicity.patch
^
|
@@ -1,24 +0,0 @@
-Index: recursor_cache.cc
-===================================================================
---- recursor_cache.cc.orig 2006-11-12 17:56:13.000000000 +0100
-+++ recursor_cache.cc 2007-02-27 21:44:27.347571093 +0100
-@@ -9,9 +9,17 @@ using namespace std;
- using namespace boost;
-
- #include "config.h"
--
--#ifdef GCC_SKIP_LOCKING
-+#if !(__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 2)) && defined(GCC_SKIP_LOCKING)
-+#warning "using the optimized locking code on older gcc"
-+#if HAVE_BITS_ATOMICITY_H
- #include <bits/atomicity.h>
-+#endif
-+/*
-+this is just a reminder. in gcc 4.2 it seems atomicity.h was moved under ext/
-+#if HAVE_EXT_ATOMICITY_H
-+#include <ext/atomicity.h>
-+#endif
-+*/
- // This code is ugly but does speedup the recursor tremendously on multi-processor systems, and even has a large effect (20, 30%) on uniprocessor
- namespace __gnu_cxx
- {
|
[-]
[+]
|
Deleted |
pdns-recursor-3.1.7_config.patch
^
|
@@ -1,12 +0,0 @@
-Index: config.h
-===================================================================
---- config.h.orig
-+++ config.h
-@@ -1,5 +1,5 @@
--#define SYSCONFDIR "/etc/powerdns/"
--#define LOCALSTATEDIR "/var/run/"
-+#define SYSCONFDIR "/etc/pdns/"
-+#define LOCALSTATEDIR "/var/run/pdns/"
- #define VERSION "3.1.7"
- #define RECURSOR
- #ifndef WIN32
|
[-]
[+]
|
Deleted |
pdns-recursor-3.2-strip.patch
^
|
@@ -1,13 +0,0 @@
---- Makefile
-+++ Makefile
-@@ -54,10 +54,8 @@
- install: all
- -mkdir -p $(DESTDIR)/$(SBINDIR)
- mv pdns_recursor $(DESTDIR)/$(SBINDIR)
-- strip $(DESTDIR)/$(SBINDIR)/pdns_recursor
- mkdir -p $(DESTDIR)/$(BINDIR)
- mv rec_control $(DESTDIR)/$(BINDIR)
-- strip $(DESTDIR)/$(BINDIR)/rec_control
- -mkdir -p $(DESTDIR)/$(CONFIGDIR)
- $(DESTDIR)/$(SBINDIR)/pdns_recursor --config > $(DESTDIR)/$(CONFIGDIR)/recursor.conf-dist
- -mkdir -p $(DESTDIR)/usr/share/man/man1
|
[-]
[+]
|
Deleted |
pdns-recursor-3.2_config.patch
^
|
@@ -1,9 +0,0 @@
---- config.h.orig 2010-03-06 13:10:44.000000000 +0100
-+++ config.h 2010-03-08 07:04:56.000000000 +0100
-@@ -1,4 +1,4 @@
--#define SYSCONFDIR "/etc/powerdns/"
--#define LOCALSTATEDIR "/var/run/"
-+#define SYSCONFDIR "/etc/pdns/"
-+#define LOCALSTATEDIR "/var/run/pdns"
- #define VERSION "3.2"
- #define RECURSOR
|
[-]
[+]
|
Added |
pdns-recursor-3.3-strip.patch
^
|
@@ -0,0 +1,13 @@
+--- Makefile
++++ Makefile
+@@ -54,10 +54,8 @@
+ install: all
+ -mkdir -p $(DESTDIR)/$(SBINDIR)
+ mv pdns_recursor $(DESTDIR)/$(SBINDIR)
+- strip $(DESTDIR)/$(SBINDIR)/pdns_recursor
+ mkdir -p $(DESTDIR)/$(BINDIR)
+ mv rec_control $(DESTDIR)/$(BINDIR)
+- strip $(DESTDIR)/$(BINDIR)/rec_control
+ -mkdir -p $(DESTDIR)/$(CONFIGDIR)
+ $(DESTDIR)/$(SBINDIR)/pdns_recursor --config > $(DESTDIR)/$(CONFIGDIR)/recursor.conf-dist
+ -mkdir -p $(DESTDIR)/usr/share/man/man1
|
[-]
[+]
|
Added |
pdns-recursor-3.3_config.patch
^
|
@@ -0,0 +1,9 @@
+--- config.h.orig 2010-03-06 13:10:44.000000000 +0100
++++ config.h 2010-03-08 07:04:56.000000000 +0100
+@@ -1,4 +1,4 @@
+-#define SYSCONFDIR "/etc/powerdns/"
+-#define LOCALSTATEDIR "/var/run/"
++#define SYSCONFDIR "/etc/pdns/"
++#define LOCALSTATEDIR "/var/run/pdns"
+ #define VERSION "3.2"
+ #define RECURSOR
|
[-]
[+]
|
Added |
pdns-recursor-3.7.0-disable-secpoll.patch
^
|
@@ -0,0 +1,11 @@
+--- a/pdns/pdns_recursor.cc
++++ b/pdns/pdns_recursor.cc
+@@ -2304,7 +2304,7 @@
+ ::arg().set("max-total-msec", "Maximum total wall-clock time per query in milliseconds, 0 for unlimited")="7000";
+
+ ::arg().set("include-dir","Include *.conf files from this directory")="";
+- ::arg().set("security-poll-suffix","Domain name from which to query security update notifications")="secpoll.powerdns.com.";
++ ::arg().set("security-poll-suffix","Domain name from which to query security update notifications")="";
+
+ ::arg().setCmd("help","Provide a helpful message");
+ ::arg().setCmd("version","Print version string");
|
[-]
[+]
|
Added |
pdns-recursor-init-rh.patch
^
|
@@ -0,0 +1,38 @@
+--- pdns-recursor.init.d.orig 2011-01-20 23:58:11.527523104 +0100
++++ pdns-recursor.init.d 2011-01-20 23:59:08.827170729 +0100
+@@ -13,7 +13,7 @@
+
+ doPC()
+ {
+- ret=`$BINARYPATH/rec_control $EXTRAOPTS $1 $2 2> /dev/null`
++ ret=`$SBINARYPATH/rec_control $EXTRAOPTS $1 $2 2> /dev/null`
+ }
+
+
+@@ -22,7 +22,7 @@
+
+ case "$1" in
+ status)
+- if test "$NOTRUNNING" = "0"
++ if [ "$NOTRUNNING" == "0" ]
+ then
+ echo "running"
+ else
+@@ -32,7 +32,7 @@
+
+ stop)
+ echo -n "Stopping PowerDNS recursing nameserver: "
+- if test "$NOTRUNNING" = "0"
++ if [ "$NOTRUNNING" == "0" ]
+ then
+ doPC quit
+ echo $ret
+@@ -50,7 +50,7 @@
+
+ start)
+ echo -n "Starting PowerDNS recursing nameserver: "
+- if test "$NOTRUNNING" = "0"
++ if [ "$NOTRUNNING" == "0" ]
+ then
+ echo "already running"
+ else
|
|
Added |
boost_1_39_0.tar.bz2
^
|
|
Changed |
pdns-recursor-3.7.1.tar.bz2
^
|
|
Changed |
pdns-recursor-3.7.2.tar.bz2
^
|
|
Changed |
pdns-recursor-3.7.3.tar.bz2
^
|
|
Changed |
pdns-recursor-3.7.4.tar.bz2
^
|
|
Changed |
pdns-recursor-4.1.16.tar.bz2
^
|
|
Changed |
pdns-recursor-4.1.4.tar.bz2
^
|
[-]
[+]
|
Added |
pdns-recursor.cron
^
|
@@ -0,0 +1,2 @@
+*/1 * * * * root cd /usr/share/pdns-recursor/rrd/ ; ./update >/dev/null 2>&1
+*/1 * * * * root cd /usr/share/pdns-recursor/rrd/ ; ./makegraphs >/dev/null 2>&1
|