]> granicus.if.org Git - pdns/commitdiff
Remove static package scripts and mentions
authorPieter Lexis <pieter.lexis@powerdns.com>
Wed, 25 May 2016 13:52:43 +0000 (15:52 +0200)
committerPieter Lexis <pieter.lexis@powerdns.com>
Wed, 25 May 2016 13:52:43 +0000 (15:52 +0200)
16 files changed:
build-scripts/build-auth-semistatic [deleted file]
build-scripts/debian-authoritative-semistatic/.gitignore [deleted file]
build-scripts/debian-authoritative-semistatic/control [deleted file]
build-scripts/debian-authoritative-semistatic/copyright [deleted file]
build-scripts/debian-authoritative-semistatic/doc-base [deleted file]
build-scripts/debian-authoritative-semistatic/pdns.conffiles [deleted file]
build-scripts/debian-authoritative-semistatic/pdns.postinst [deleted file]
build-scripts/debian-authoritative-semistatic/pdns.postrm [deleted file]
build-scripts/debian-authoritative-semistatic/pdns.prerm [deleted file]
build-scripts/debian-authoritative-semistatic/rules [deleted file]
build-scripts/debian-authoritative-semistatic/shlibs.local [deleted file]
build-scripts/rpm-build-instruction [deleted file]
build-scripts/semistaticg++ [deleted file]
docs/markdown/appendix/compiling-powerdns.md
docs/markdown/authoritative/installation.md
docs/markdown/httpapi/README.md

diff --git a/build-scripts/build-auth-semistatic b/build-scripts/build-auth-semistatic
deleted file mode 100755 (executable)
index cb07214..0000000
+++ /dev/null
@@ -1,133 +0,0 @@
-#!/bin/sh
-
-if [ "$0" != "./build-scripts/build-auth-semistatic" ]; then
-  echo "Please run me from the root checkout dir"
-  exit 1
-fi
-
-if [ -z "$VERSION" ]; then
-  echo 'Please set $VERSION' >&2
-  exit 1
-fi
-
-if [ -z "$RELEASE" ];then
-  echo 'Please set $RELEASE' >&2
-  exit 1
-fi
-
-if [ -z "$DISTDIR" ]; then
-  DISTDIR=pdns
-fi
-
-set -e
-set -x
-
-rm -rf $DISTDIR/debian/
-cp -r build-scripts/debian-authoritative-semistatic $DISTDIR/debian
-
-cd $DISTDIR
-
-cat > debian/changelog << EOF
-pdns (${VERSION}-${RELEASE}) unstable; urgency=medium
-
-  * Automatic build
-
- -- PowerDNS.COM AutoBuilder <noreply@powerdns.com>  $(date -R)
-
-EOF
-
-fakeroot debian/rules binary-static
-
-cat > pdns.spec <<EOF
-BuildRoot: /tmp/pdns
-Name: pdns-static
-Version: $VERSION
-Release: $RELEASE
-Summary: extremely powerful and versatile nameserver
-License: GPLv2
-Distribution: Neutral
-Vendor: PowerDNS.COM BV
-Group: System/DNS
-
-%define _rpmdir ../
-%define _rpmfilename %%{NAME}-%%{VERSION}-%%{RELEASE}.%%{ARCH}.rpm
-
-%description
-PowerDNS is a versatile nameserver which supports a large number
-of different backends ranging from simple zonefiles to relational
-databases and load balancing/failover algorithms.
-
-This RPM is statically compiled and should work on all Linux distributions.
-It comes with support for MySQL, PostgreSQL, Bind zonefiles and the 'pipe
-backend'.
-
-%files
-%defattr(-,root,root)
-%{_sbindir}/pdns_server
-%{_bindir}/pdns_control
-%{_bindir}/zone2sql
-%{_bindir}/zone2json
-%{_bindir}/pdnsutil
-%{_mandir}/man1/pdns_control.1
-%{_mandir}/man1/pdns_server.1
-%{_mandir}/man1/zone2sql.1
-%{_mandir}/man1/pdnsutil.1
-%{_datadir}/doc/pdns/*.sql
-
-%dir %{_sysconfdir}/powerdns/
-%config(noreplace) %{_sysconfdir}/powerdns/pdns.conf
-%config %{_sysconfdir}/init.d/pdns
-
-%post
-echo Remember to create a 'pdns' user before starting pdns
-
-%package -n pdns-tools
-Summary: extremely powerful and versatile nameserver
-License: GPLv2
-Distribution: Neutral
-Vendor: PowerDNS.COM BV
-Group: System/DNS
-
-%description -n pdns-tools
-These are the tools
-
-%files -n pdns-tools
-%defattr(-,root,root)
-%{_bindir}/calidns
-%{_bindir}/dnsbulktest
-%{_bindir}/dnsgram
-%{_bindir}/dnsreplay
-%{_bindir}/dnsscan
-%{_bindir}/dnsscope
-%{_bindir}/dnstcpbench
-%{_bindir}/dnswasher
-%{_bindir}/dumresp
-%{_bindir}/ixplore
-%{_bindir}/notify
-%{_bindir}/nproxy
-%{_bindir}/nsec3dig
-%{_bindir}/saxfr
-%{_bindir}/sdig
-%{_mandir}/man1/dnsbulktest.1
-%{_mandir}/man1/dnsgram.1
-%{_mandir}/man1/dnsreplay.1
-%{_mandir}/man1/dnsscan.1
-%{_mandir}/man1/dnsscope.1
-%{_mandir}/man1/dnstcpbench.1
-%{_mandir}/man1/dnswasher.1
-%{_mandir}/man1/ixplore.1
-%{_mandir}/man1/nsec3dig.1
-%{_mandir}/man1/saxfr.1
-%{_mandir}/man1/sdig.1
-
-EOF
-
-BUILDROOT=$(pwd)/rpm-buildroot/
-fakeroot /bin/sh -c "rm -rf $BUILDROOT ; DESTDIR=$BUILDROOT make install-strip"
-fakeroot rm -f $BUILDROOT/usr/lib/pdns/*.a $BUILDROOT/usr/lib/pdns/*.la $BUILDROOT/usr/lib/*.a $BUILDROOT/usr/lib/*.la
-fakeroot mkdir -p $BUILDROOT/etc/init.d
-fakeroot cp pdns/pdns.init $BUILDROOT/etc/init.d/pdns || fakeroot cp pdns/pdns $BUILDROOT/etc/init.d/pdns
-fakeroot mkdir -p $BUILDROOT/etc/powerdns
-fakeroot mv $BUILDROOT/etc/powerdns/pdns.conf-dist $BUILDROOT/etc/powerdns/pdns.conf
-fakeroot rm -f $BUILDROOT/usr/bin/zone2ldap $BUILDROOT/usr/man/man1/zone2ldap.1 $BUILDROOT/usr/man/man1/zone2ldap.1 $BUILDROOT/usr/share/man/man1/zone2ldap.1 $BUILDROOT/usr/share/man/man1/zone2ldap.1
-fakeroot rpmbuild -bb pdns.spec --buildroot $BUILDROOT
diff --git a/build-scripts/debian-authoritative-semistatic/.gitignore b/build-scripts/debian-authoritative-semistatic/.gitignore
deleted file mode 100644 (file)
index 9d3c3b0..0000000
+++ /dev/null
@@ -1,5 +0,0 @@
-/tmp
-/tmp-bind
-/tmp-mysql
-/files
-/substvars
diff --git a/build-scripts/debian-authoritative-semistatic/control b/build-scripts/debian-authoritative-semistatic/control
deleted file mode 100644 (file)
index c5bfef1..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-Source: pdns
-Section: net
-Priority: extra
-Standards-Version: 3.5.8
-Maintainer: PowerDNS AutoBuilder
-Origin: PowerDNS
-Build-Depends: autoconf, libtool, flex, bison, docbook-utils, libmysqlclient-dev, postgresql-dev | libpq-dev, tdb-dev, libgdbm-dev, libldap2-dev, libsqlite3-dev, dpkg-dev (>= 1.10.17), libboost-dev (>=1.34), libboost-program-options-dev, libboost-serialization-dev, pkg-config, ragel, libbotan1.10-dev, liblua5.1-dev, libyaml-cpp-dev (>= 0.5). libgeoip-dev
-
-Package: pdns-static
-Architecture: any
-Conflicts: pdns-server
-Description: PowerDNS nameserver (static version)
- PowerDNS is a versatile nameserver which supports a large number
- of different backends ranging from simple zonefiles to relational
- databases and load balancing/failover algorithms.
- .
- This package contains a statically compiled version of PowerDNS which
- can be used on older Debian releases for which no dynamic version
- is available.
-
-Package: pdns-tools
-Architecture: any
-Conflicts: pdns-server
-Description: PowerDNS tools (static version)
- PowerDNS is a versatile nameserver which supports a large number
- of different backends ranging from simple zonefiles to relational
- databases and load balancing/failover algorithms.
- .
- This package contains a collection of tools based on the core
- PowerDNS libraries.
diff --git a/build-scripts/debian-authoritative-semistatic/copyright b/build-scripts/debian-authoritative-semistatic/copyright
deleted file mode 100644 (file)
index 8c1b1cf..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-This is the prepackaged version of the PowerDNS
-nameserver.
-
-PowerDNS can be downloaded from http://www.powerdns.com/
-
-Copyright and license:
-
-    Copyright 2002 PowerDNS.COM BV
-
-    This program is free software; you can redistribute it and/or modify
-    it under the terms of version 2 of the GNU General Public License as
-    published by the Free Software Foundation.
-
-    Additionally, the license of this program contains a special
-    exception which allows to distribute the program in binary form when
-    it is linked against OpenSSL.
-
-    This program is distributed in the hope that it will be useful,
-    but WITHOUT ANY WARRANTY; without even the implied warranty of
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-    GNU General Public License for more details.
-
-On Debian systems, the complete text of the GNU General Public License 
-can be found in /usr/share/common-licenses/GPL
-
diff --git a/build-scripts/debian-authoritative-semistatic/doc-base b/build-scripts/debian-authoritative-semistatic/doc-base
deleted file mode 100644 (file)
index 5f95c49..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-Document: pdns
-Title: PowerDNS manual
-Author: PowerDNS B.V.
-Section: Apps/System
-Abstract: PowerDNS manual
- This is the complete manual for PowerDNS, documenting both
- how to install and configure it as well as how to write
- new backend modules.
-
-Format: html
-Index: /usr/share/doc/pdns/html/index.html
-Files: /usr/share/doc/pdns/html/*.html
diff --git a/build-scripts/debian-authoritative-semistatic/pdns.conffiles b/build-scripts/debian-authoritative-semistatic/pdns.conffiles
deleted file mode 100644 (file)
index 52ba056..0000000
+++ /dev/null
@@ -1,2 +0,0 @@
-/etc/powerdns/pdns.conf
-/etc/init.d/pdns
diff --git a/build-scripts/debian-authoritative-semistatic/pdns.postinst b/build-scripts/debian-authoritative-semistatic/pdns.postinst
deleted file mode 100755 (executable)
index 0c66191..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/bin/sh
-# postinst script for pdns
-
-set -e
-
-case "$1" in
-    configure)
-        if [ -z $2 ]; then
-            update-rc.d pdns defaults 15 85 > /dev/null
-            invoke-rc.d pdns start
-        else
-            invoke-rc.d pdns status > /dev/null
-            [ $? -eq 3 ] || invoke-rc.d pdns restart
-        fi
-    ;;
-
-    abort-upgrade|abort-remove|abort-deconfigure)
-    ;;
-
-    *)
-        echo "postinst called with unknown argument \`$1'" >&2
-        exit 1
-    ;;
-esac
-
-#DEBHELPER#
-
-exit 0
diff --git a/build-scripts/debian-authoritative-semistatic/pdns.postrm b/build-scripts/debian-authoritative-semistatic/pdns.postrm
deleted file mode 100755 (executable)
index e16b8ac..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/bin/sh
-# postrm script for pdns
-
-set -e
-
-case "$1" in
-    purge|remove)
-        update-rc.d pdns remove
-    ;;
-
-    upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
-    ;;
-
-    *)
-        echo "postrm called with unknown argument \`$1'" >&2
-        exit 1
-    ;;
-esac
-
-#DEBHELPER#
-
-exit 0
diff --git a/build-scripts/debian-authoritative-semistatic/pdns.prerm b/build-scripts/debian-authoritative-semistatic/pdns.prerm
deleted file mode 100755 (executable)
index 5a312c7..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/bin/sh
-# prerm script for pdns
-
-set -e
-
-case "$1" in
-    remove|upgrade|deconfigure)
-        if command -v invoke-rc.d >/dev/null 2>&1; then
-            invoke-rc.d pdns stop
-        else
-            /etc/init.d/pdns stop
-        fi
-    ;;
-
-    failed-upgrade)
-    ;;
-
-    *)
-        echo "prerm called with unknown argument \`$1'" >&2
-        exit 1
-    ;;
-esac
-
-#DEBHELPER#
-
-exit 0
diff --git a/build-scripts/debian-authoritative-semistatic/rules b/build-scripts/debian-authoritative-semistatic/rules
deleted file mode 100755 (executable)
index a33b813..0000000
+++ /dev/null
@@ -1,114 +0,0 @@
-#!/usr/bin/make -f
-# This rules file is usable only for PowerDNS.COM static builds.
-# If you want a Debian-downstream-style package, please use the packaging from Debian.
-
-tmpdir         := $(shell pwd)/debian/tmp
-tools_tmpdir   := $(shell pwd)/debian/tmp-tools
-
-build-static stamp-build-static:
-       ./configure \
-               CXX=$(shell pwd)/build-scripts/semistaticg++ \
-               PKG_CONFIG_PATH=/opt/botan-1.10/lib/pkgconfig/ \
-               --prefix=/usr \
-               --libexecdir='$${prefix}/lib' \
-               --libdir='$${prefix}/lib' \
-               --sysconfdir=/etc/powerdns \
-               --infodir='$${datadir}/info' \
-               --mandir='$${datadir}/man' \
-               --with-pgsql-lib=/opt/postgresql/lib --with-pgsql-includes=/opt/postgresql/include \
-               --with-modules="bind gmysql gpgsql pipe gsqlite3 lua geoip tinydns mydns opendbx remote random" \
-               --with-dynmodules="" \
-               --enable-botan1.10 \
-               --enable-static-binaries \
-               --enable-tools
-       make -j4
-       touch stamp-build-static
-
-
-binary-main-prepare: 
-       rm -f debian/substvars
-       rm -rf "$(tmpdir)" "$(tmpdir)"-*
-       rm -rf "$(tools_tmpdir)" "$(tools_tmpdir)"-*
-       install -d -m 755 -o root -g root "$(tmpdir)"
-       install -d -m 755 -o root -g root "$(tools_tmpdir)"
-       make DESTDIR="$(tmpdir)" install
-
-       rm -f "$(tmpdir)"/usr/bin/binpatch
-       rm -f "$(tmpdir)"/usr/bin/zone2ldap
-       rm -rf "$(tmpdir)"/usr/lib
-       rm -f "$(tmpdir)"/usr/share/man/man1/zone2ldap.1
-       strip --remove-section=.comment --remove-section=.note \
-               --strip-unneeded \
-               "$(tmpdir)"/usr/bin/zone2sql \
-               "$(tmpdir)"/usr/sbin/pdns_server \
-               "$(tmpdir)"/usr/bin/pdns_control
-       mv "$(tmpdir)"/etc/powerdns/pdns.conf-dist "$(tmpdir)"/etc/powerdns/pdns.conf
-
-       install -d -m 755 -o root -g root "$(tmpdir)"/etc/init.d
-       install -p -m 755 -o root -g root pdns/pdns.init \
-               "$(tmpdir)"/etc/init.d/pdns
-
-       install -d -m 755 -o root -g root \
-               "$(tmpdir)"/usr/share/doc/pdns
-       install -p -m 644 -o root -g root debian/changelog \
-                       "$(tmpdir)"/usr/share/doc/pdns/changelog.Debian
-       gzip -9 "$(tmpdir)"/usr/share/doc/pdns/c*
-       install -p -m 644 -o root -g root debian/copyright \
-                       "$(tmpdir)"/usr/share/doc/pdns/
-       
-       install -d -m 755 -o root -g root "$(tmpdir)"/DEBIAN
-       install -p -m 755 -o root -g root debian/pdns.prerm \
-                       "$(tmpdir)"/DEBIAN/prerm
-       install -p -m 755 -o root -g root debian/pdns.postrm \
-                       "$(tmpdir)"/DEBIAN/postrm
-       install -p -m 755 -o root -g root debian/pdns.postinst \
-                       "$(tmpdir)"/DEBIAN/postinst
-       install -p -m 644 -o root -g root debian/pdns.conffiles \
-                       "$(tmpdir)"/DEBIAN/conffiles
-
-
-       install -d -m 755 -o root -g root \
-               "$(tools_tmpdir)"/usr/bin
-       install -d -m 755 -o root -g root \
-               "$(tools_tmpdir)"/usr/share/man/man8
-       install -d -m 755 -o root -g root \
-               "$(tools_tmpdir)"/usr/share/man/man1
-       install -d -m 755 -o root -g root \
-               "$(tools_tmpdir)"/usr/share/doc/pdns-tools
-       install -p -m 644 -o root -g root debian/changelog \
-                       "$(tools_tmpdir)"/usr/share/doc/pdns-tools/changelog.Debian
-       gzip -9 "$(tools_tmpdir)"/usr/share/doc/pdns-tools/c*
-       install -p -m 644 -o root -g root debian/copyright \
-                       "$(tools_tmpdir)"/usr/share/doc/pdns-tools/
-
-       install -d -m 755 -o root -g root "$(tools_tmpdir)"/DEBIAN
-
-       #FIXME: shell loops hide errors
-       for prog in dnsbulktest dnsgram dnsreplay dnsscan dnsscope dnstcpbench dnswasher \
-               ixplore notify nproxy nsec3dig saxfr sdig ; do \
-               mv "$(tmpdir)"/usr/bin/$$prog "$(tools_tmpdir)"/usr/bin ; \
-               [ -e "$(tmpdir)"/usr/share/man/man8/"$$prog".8 ] && \
-                       mv "$(tmpdir)"/usr/share/man/man8/"$$prog".8 "$(tools_tmpdir)"/usr/share/man/man8/ ; \
-               [ -e "$(tmpdir)"/usr/share/man/man1/"$$prog".1 ] && \
-                       mv "$(tmpdir)"/usr/share/man/man1/"$$prog".1 "$(tools_tmpdir)"/usr/share/man/man1/ ; \
-               strip --remove-section=.comment --remove-section=.note \
-                       --strip-unneeded \
-                       "$(tools_tmpdir)"/usr/bin/"$$prog" ; \
-       done
-
-
-binary-static: stamp-build-static binary-main-prepare
-       dpkg-gencontrol -fdebian/files -cdebian/control -ldebian/changelog  -isp -ppdns-static -P"$(tmpdir)"
-       dpkg-gencontrol -fdebian/files -cdebian/control -ldebian/changelog  -isp -ppdns-tools -P"$(tools_tmpdir)"
-       dpkg --build "$(tmpdir)" ..
-       dpkg --build "$(tools_tmpdir)" ..
-
-
-clean:
-       -make distclean
-       -make -C docs clean
-       rm -f debian/files debian/substvars stamp-build stamp-build-static
-       rm -rf "$(tmpdir)"
-
-.PHONY: clean
-
diff --git a/build-scripts/debian-authoritative-semistatic/shlibs.local b/build-scripts/debian-authoritative-semistatic/shlibs.local
deleted file mode 100644 (file)
index a2ae88a..0000000
+++ /dev/null
@@ -1 +0,0 @@
-libbindbackend 0
diff --git a/build-scripts/rpm-build-instruction b/build-scripts/rpm-build-instruction
deleted file mode 100755 (executable)
index de23d9e..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/sh
-#LIBS="-lkrb5 -lk5crypto -lpgport -lgssapi_krb5 -lkrb5support -lgssapi_krb5 -lcom_err -lnsl -lresolv" \
-CC="ccache gcc" CXX="ccache g++" CPPFLAGS=-I/usr/local/include/botan-1.10 ./configure \
-               --with-modules="bind gmysql gpgsql gsqlite3 pipe geo lua random" \
-       --with-dynmodules="" \
-       --enable-static-binaries \
-       --with-pgsql-lib=/opt/postgresql/lib --with-pgsql-includes=/opt/postgresql/include \
-       --prefix=/usr \
-       --sysconfdir=/etc/powerdns --enable-botan1.10 \
-       --mandir=/usr/man/ \
-&& make clean && make -j4 && \
-fakeroot /bin/sh -c "rm -rf /tmp/pdns ; DESTDIR=/tmp/pdns make install-strip" &&
-fakeroot rm -f /tmp/pdns/usr/lib/pdns/*.a /tmp/pdns/usr/lib/pdns/*.la &&
-fakeroot install -d -m 755 -o root -g root /tmp/pdns/etc/init.d &&
-fakeroot install -p -m 755 -o root -g root pdns/pdns.init /tmp/pdns/etc/init.d/pdns &&
-fakeroot mkdir -p /tmp/pdns/etc/powerdns &&
-fakeroot mv /tmp/pdns/etc/powerdns/pdns.conf-dist /tmp/pdns/etc/powerdns/pdns.conf &&
-fakeroot rm /tmp/pdns/usr/bin/zone2ldap &&
-fakeroot rpmbuild -bb pdns.spec --buildroot /tmp/pdns
-
diff --git a/build-scripts/semistaticg++ b/build-scripts/semistaticg++
deleted file mode 100755 (executable)
index 0e14e8e..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/usr/bin/env python
-import sys,os
-
-args = sys.argv[1:]
-if '-static' not in args:
-       os.execvp('g++', ['g++']+args)
-
-libs = []
-otherargs = []
-for arg in args:
-       if arg == '-static':
-               continue
-       if arg.startswith('/usr/lib') or (arg.startswith('-l') and arg not in ('-lm','-ldl','-lpthread')):
-               libs.append(arg)
-       else:
-               otherargs.append(arg)
-
-gargv=['gcc']+otherargs+['-Wl,-Bstatic']+libs+['-lstdc++','-Wl,-Bdynamic','-static-libgcc','-lm','-ldl']
-os.execvp('gcc', gargv)
index ea6510c0d36413869fdadaa8e90a797327ee93cd..0f62d94134500722da481e6af44dea5e7b9e477b 100644 (file)
@@ -40,9 +40,7 @@ The FreeBSD Boost include files are installed in `/usr/local/include`, so prefix
 
 ### Linux
 Linux is probably the best supported platform as most of the main coders are
-Linux users. The static DEB distribution is known to have problems on Debian
-'Sid', but that doesn't matter as PowerDNS is a native part of Debian 'Sid'.
-Just `apt-get`!
+Linux users.
 
 ### Mac OS X
 The [installation from Homebrew](../authoritative/installation.md#mac-os-x)
index 0d7f6d22c5b856fdceb60e93c2c64dd462a81212..961095b7691e2b58c4ab165cdea6caf84eeec5f6 100644 (file)
@@ -3,7 +3,6 @@ Installation of the PowerDNS Authoritative server on UNIX systems can be done in
 
   * Binary packages provided by your distribution
   * Binary packages provided by PowerDNS on [repo.powerdns.com](https://repo.powerdns.com)
-  * Using the statically linked binary packages provided on the [website](https://www.powerdns.com/downloads.html) (not available for 4.X)
   * Compiling from source
 
 ## Binary Packages
@@ -20,12 +19,6 @@ Debian splits the backends into [several different packages](https://packages.de
 # apt-get install pdns-backend-$backend
 ```
 
-A statically linked package can be installed by downloading it and issueing:
-
-```
-# dpkg -i pdns-static_$version_$arch.deb
-```
-
 ### Redhat-based Systems
 On RedHat based system there are 2 options to install PowerDNS, from
 [EPEL](https://fedoraproject.org/wiki/EPEL), the [repository from Kees
index 7514010034f9366df9dd51bba123311d18e07f7f..5779be903950b681607b9a8729633fc934099a95 100644 (file)
@@ -7,13 +7,6 @@ version 3.4, for the Recursor starting with version 3.6.
 The released versions use the standard webserver password for authentication,
 while newer versions use a static API key mechanism (shown below).
 
-You can get suitable packages for testing (RPM or DEB) from these links:
-
-  * https://autotest.powerdns.com/job/auth-git-semistatic-deb-amd64/lastSuccessfulBuild/artifact/
-  * https://autotest.powerdns.com/job/auth-git-semistatic-rpm-amd64/lastSuccessfulBuild/artifact/
-  * https://autotest.powerdns.com/job/recursor-git-semistatic-pkgs-amd64/lastSuccessfulBuild/artifact/
-
-
 Try it
 ------