--- nsd-2.3.7.orig/debian/rules +++ nsd-2.3.7/debian/rules @@ -0,0 +1,21 @@ +#!/usr/bin/make -f +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/rules/simple-patchsys.mk +include /usr/share/cdbs/1/class/autotools.mk + +CFLAGS = -Wall -g -D_XOPEN_SOURCE=600 +CPPFLAGS = -Wall -g -D_XOPEN_SOURCE=600 + +DEB_MAKE_CLEAN_TARGET := clean + +DEB_CONFIGURE_EXTRA_FLAGS := \ + --with-configfile=/etc/default/nsd --with-pidfile=/var/run/nsd.pid \ + --with-configdir=/etc/nsd/ --sysconfdir=/etc --localstatedir=/var \ + --enable-ipv6 --with-dbfile=/var/lib/nsd/nsd.db --enable-root-server + +clean:: + rm -f config.h Makefile config.sub config.log config.status + +install/nsd:: + rm $(CURDIR)/debian/nsd/etc/default/nsd.sample + mv $(CURDIR)/debian/nsd/etc/nsd/nsd.zones.sample $(CURDIR)/debian/nsd/etc/nsd/nsd.zones --- nsd-2.3.7.orig/debian/control +++ nsd-2.3.7/debian/control @@ -0,0 +1,18 @@ +Source: nsd +Section: net +Priority: optional +Maintainer: OndÅ™ej Surý +Build-Depends: cdbs (>= 0.4.23-1.1), debhelper (>= 4.2.0), patchutils (>= 0.2.25), libwrap0-dev | libwrap-dev, bison, flex, groff, libssl-dev +Standards-Version: 3.6.1 + +Package: nsd +Architecture: any +Depends: adduser, ${shlibs:Depends}, ${misc:Depends} +Conflicts: aolserver, mico +Description: authoritative name domain server + NSD is an fast, authoritative only, high performance, simple + and open source name server. + . + The NSD was primarily developed by NLnet Labs on request from and close + cooperation with RIPE NCC, as an alternative name server software to be + run on the root name server RIPE NCC operates. --- nsd-2.3.7.orig/debian/nsd.examples +++ nsd-2.3.7/debian/nsd.examples @@ -0,0 +1 @@ +nsd.zones.sample --- nsd-2.3.7.orig/debian/nsd.default +++ nsd-2.3.7/debian/nsd.default @@ -0,0 +1,44 @@ +# Rebuild zone file at startup +rebuild=true + +#Chroot - You have to prepare chroot before changing this value +chroot="" + +# Pathname to the directory containing zone file. De facto NSD ``home'' +configdir="${chroot}/etc/nsd" + +# The directory where NSD binaries reside +sbindir="${chroot}/usr/sbin" + +# User to run daemon as +nsd_user="nsd" + +# Flags to pass nsd at startup +flags="" + +# Pathname of the database +dbfile="${chroot}/var/lib/nsd/nsd.db" + +# List of the configured zones +zonesfile="${chroot}/etc/nsd/nsd.zones" + +# The directory containing NSD keys +keysdir="${chroot}/etc/nsd/keys" + +# Pidfile +pidfile="${chroot}/var/run/nsd.pid" + +# Pathname of nsd-notify binary +notify="/usr/sbin/nsd-notify" + +# Pathname of nsd-xfer(8) binary +nsdxfer="/usr/sbin/nsd-xfer" + +# Verbosity of "nsdc update". Set ZONEC_VERBOSE to -v, -vv or to a +# null string ZONEC_VERBOSE=-v + +# Force verbosity to "true" or "false", +# default is verbose when run from a tty, quiet otherwise. +# this is compatibility option and is deprecated and will be removed +# from future version, since upstream use ZONEC_VERBOSE +# verbose=true --- nsd-2.3.7.orig/debian/nsd.postrm +++ nsd-2.3.7/debian/nsd.postrm @@ -0,0 +1,8 @@ +#!/bin/sh + +if [ "$1" = "purge" ] ; then + rm /var/lib/nsd/nsd.db + rmdir --ignore-fail-on-non-empty /var/lib/nsd +fi + +#DEBHELPER# --- nsd-2.3.7.orig/debian/README.Debian +++ nsd-2.3.7/debian/README.Debian @@ -0,0 +1,9 @@ +nsd for Debian +-------------- + +- I have moved /etc/nsd/nsdc.conf to /etc/default/nsdc +- Zone file is rebuild automaticaly on nsd startup. +- I have copied named-xfer binary from bind 8.4.4 package and renamed + it to nsd-xfer along with man page. + + -- Ondrej Sury , Wed, 9 Jul 2003 15:52:33 +0200 --- nsd-2.3.7.orig/debian/compat +++ nsd-2.3.7/debian/compat @@ -0,0 +1 @@ +4 --- nsd-2.3.7.orig/debian/control.in +++ nsd-2.3.7/debian/control.in @@ -0,0 +1,18 @@ +Source: nsd +Section: net +Priority: optional +Maintainer: OndÅ™ej Surý +Build-Depends: @cdbs@, libwrap0-dev | libwrap-dev, bison, flex, groff, libssl-dev +Standards-Version: 3.6.1 + +Package: nsd +Architecture: any +Depends: adduser, ${shlibs:Depends}, ${misc:Depends} +Conflicts: aolserver, mico +Description: authoritative name domain server + NSD is an fast, authoritative only, high performance, simple + and open source name server. + . + The NSD was primarily developed by NLnet Labs on request from and close + cooperation with RIPE NCC, as an alternative name server software to be + run on the root name server RIPE NCC operates. --- nsd-2.3.7.orig/debian/init.d +++ nsd-2.3.7/debian/init.d @@ -0,0 +1,76 @@ +#! /bin/sh +### BEGIN INIT INFO +# Provides: nsd +# Required-Start: $remote_fs $syslog +# Required-Stop: $remote_fs $syslog +# Default-Start: 2 3 4 5 +# Default-Stop: 0 1 6 +### END INIT INFO + +PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin +DAEMON=/usr/sbin/nsd +NAME=nsd +DESC="domain name service" + +NSDC=/usr/sbin/nsdc + +dbfile=/etc/nsd/nsd.db +rebuild=false +pidfile=/var/run/nsd.pid + +test -f /etc/default/nsd && . /etc/default/nsd +test -x ${NSDC} || exit 0 + +COUNTER=0 + +[ -n "${chroot}" ] && flags="${flags} -t ${chroot}" +[ -n "${nsd_user}" ] && flags="${flags} -u ${nsd_user}" + +[ ! -d /proc/sys/net/ipv6/ ] && flags="${flags} -4" + +set -e + +case "$1" in + start) + if ${rebuild} && [ \( "${zonesfile}" -nt "${dbfile}" \) -a -n "${nsd_user}" ]; then + /sbin/start-stop-daemon --start -c nsd:nsd --exec /usr/sbin/nsdc -- rebuild + fi + echo -n "Starting $DESC: $NAME..." + start-stop-daemon --start --quiet --pidfile ${pidfile} --exec ${DAEMON} -- -f ${dbfile} -P ${pidfile} ${flags} 2>/dev/null + while [ ! -s ${pidfile} ]; do + echo -n "."; + sleep 1 + if [ ${COUNTER} = "5" ]; then + break + fi + COUNTER=$((${COUNTER}+1)) + done + if [ ! -s ${pidfile} ]; then + echo "failed." + exit 1 + fi + ${NSDC} notify + echo "done." + ;; + stop) + echo -n "Stopping $DESC: $NAME" + start-stop-daemon --stop --oknodo --pidfile ${pidfile} --exec ${DAEMON} + echo "." + ;; + reload|force-reload) + echo -n "Reloading $DESC: $NAME" + [ -n "${nsd_user}" ] && chown "${nsd_user}:" "${dbfile}" + start-stop-daemon --stop --signal HUP --pidfile ${pidfile} --exec $DAEMON + ${NSDC} notify + echo "." + ;; + restart) + ${0} stop + ${0} start + ;; + *) + ${NSDC} ${1} + ;; +esac + +exit $? --- nsd-2.3.7.orig/debian/nsd.postinst +++ nsd-2.3.7/debian/nsd.postinst @@ -0,0 +1,21 @@ +#!/bin/sh + +set -e + +if [ "${1}" = "configure" ] +then + TEMPFILE=`mktemp /var/tmp/nsd.XXXXXXXX` + chgrp nsd ${TEMPFILE} >/dev/null 2>&1 || \ + /usr/sbin/addgroup --system nsd + chown nsd ${TEMPFILE} >/dev/null 2>&1 || \ + /usr/sbin/adduser --system --home /etc/nsd --no-create-home --disabled-password --ingroup nsd nsd + rm -f ${TEMPFILE} + mkdir -p /var/lib/nsd/ + chown nsd.nsd /var/lib/nsd + . /etc/default/nsd + if [ ! -e "${dbfile}" ] || [ "${zonesfile}" -nt "${dbfile}" ]; then + /sbin/start-stop-daemon --start -c nsd:nsd --exec /usr/sbin/nsdc -- rebuild + fi +fi + +#DEBHELPER# --- nsd-2.3.7.orig/debian/copyright +++ nsd-2.3.7/debian/copyright @@ -0,0 +1,82 @@ +This package was debianized by Ondrej on +Fri, 15 Nov 2002 13:42:55 +0100. + +It was downloaded from http://www.nlnetlabs.nl/nsd/ + +NSD Team (nsd-team@nlnetlabs.nl) in alphabetical order: +Alexis Yushin, NLnet Labs - design and most of the code +Daniel Karrenberg, RIPE NCC - design, major testing and bug reports +Erik Rozendaal, NLnet Labs - code review, testing, improvements and patches +Jaap Akkerhuis, SIDN NL - consultancy, advice and company :) +Miek Gieben, NLnet Labs - testing and patches +Olaf Kolkman, RIPE NCC - protocol purist, design, perl test implementation +Ronald van der Pol, NLnet Labs + - code review, MacOS X portability, IPv6. +Ted Lindgreen, NLnet Labs - design, code review, testing + +Contributors (in alphabetical order): + +Colm MacCárthaigh, - IPv6 binding and cleanups. +Jakob Schlyter, Carlstedt Research & Technology - chroot patch +Jun-ichiro itojun Hagino, IIJLab - IPv6 transport +Ondrej Sury, - nsd-notify.8 man page +Stephane Bortzmeyer, - Tru64 portability. + + +Copyright: BSD type + + * Copyright (c) 2001, NLnet Labs. All rights reserved. + * + * This software is an open source. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * + * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * Neither the name of the NLNET LABS nor the names of its contributors may + * be used to endorse or promote products derived from this software without + * specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED + * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + +This package also includes named-xfer program which is licenced +under BSD type licence as well: + +## Copyright (c) 1993-1999 by Internet Software Consortium. +## +## Permission to use, copy, modify, and distribute this software for any +## purpose with or without fee is hereby granted, provided that the above +## copyright notice and this permission notice appear in all copies. +## +## THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS +## ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES +## OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE +## CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL +## DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR +## PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS +## ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS +## SOFTWARE. + + Internet Software Consortium + 950 Charter Street + Redwood City, CA 94063 + Tel: 1-888-868-1001 + Fax: 1-650-779-7055 + Email: licensing@isc.org --- nsd-2.3.7.orig/debian/changelog +++ nsd-2.3.7/debian/changelog @@ -0,0 +1,337 @@ +nsd (2.3.7-2) unstable; urgency=low + + * Don't chown database file to nsd_user before reload and start. + * Build database file as nsd_user instead. (Closes: #513717) + * Acknowledge NMU. + + -- OndÅ™ej Surý Tue, 24 Feb 2009 15:06:01 +0100 + +nsd (2.3.7-1.1) unstable; urgency=low + + * Non-maintainer upload to solve release goal. + * Add LSB dependency header to init.d scripts (Closes: #465060). + + -- Petter Reinholdtsen Sat, 29 Mar 2008 11:21:55 +0100 + +nsd (2.3.7-1) unstable; urgency=low + + * New upstream release. + * Fix bashism in postinst, so dbfile gets created (Closes: #417892) + * Enabled root server functionality (shoot yourself in foot if you want). + * Remove config.log and config.status in clean target (Closes: #424600) + + -- OndÅ™ej Surý Wed, 16 May 2007 18:56:32 +0200 + +nsd (2.3.6-1) unstable; urgency=low + + * New upstream version. + * Add dependency on adduser (Closes: #350408) + * Changes in IPv6 binding (I hope it closes: #279277) + + -- OndÅ™ej Surý Thu, 12 Oct 2006 11:19:18 +0200 + +nsd (2.3.5-1) unstable; urgency=low + + * New upstream release. + * makefile-destdir.patch: + - Removed, merged upstream. + + -- OndÅ™ej Surý Mon, 5 Jun 2006 09:15:36 +0200 + +nsd (2.3.3-1) unstable; urgency=low + + * New upstream release. + * Pass pidfile to nsd to allow chrooting. + * Prepare config files to allow easier chrooting. + * Move uid of nsd setuid user to nsd_user and add it to flags automatically. + + -- OndÅ™ej Surý Fri, 9 Dec 2005 09:45:19 +0100 + +nsd (2.3.2-1) unstable; urgency=low + + * New upstream release. + * Chown database file to nsd_user before reload and start. + + -- OndÅ™ej Surý Mon, 5 Dec 2005 14:39:56 +0100 + +nsd (2.3.1-1) unstable; urgency=low + + * New upstream release. + + -- OndÅ™ej Surý Fri, 2 Dec 2005 10:19:07 +0100 + +nsd (2.3.0-2) unstable; urgency=low + + * Recompile with openssl 0.9.8 + + -- OndÅ™ej Surý Mon, 10 Oct 2005 13:32:19 +0200 + +nsd (2.3.0-1) unstable; urgency=low + + * New upstream release. + * Enable stripping of nsd-xfer again (Closes: #302776) + + -- OndÅ™ej Surý Tue, 3 May 2005 10:11:02 +0200 + +nsd (2.2.1-1) unstable; urgency=low + + * New upstream release. + + -- OndÅ™ej Surý Wed, 23 Feb 2005 09:06:36 +0100 + +nsd (2.2.0-1) unstable; urgency=low + + * New upstream release. + * Includes it's own nsd-xfer program. + + -- OndÅ™ej Surý Tue, 18 Jan 2005 15:49:28 +0100 + +nsd (2.1.5-1) unstable; urgency=low + + * New upstream release. + * Include bind named-xfer build in nsd sources (Closes: #282237) + + -- OndÅ™ej Surý Mon, 29 Nov 2004 18:03:31 +0100 + +nsd (2.1.4-1) unstable; urgency=low + + * New upstream release. + + -- OndÅ™ej Surý Wed, 3 Nov 2004 12:16:50 +0100 + +nsd (2.1.3-1) unstable; urgency=low + + * New upstream release. + * Remove patch to fix usage of '@' as it was merged upstream. + + -- OndÅ™ej Surý Fri, 29 Oct 2004 09:22:14 +0200 + +nsd (2.1.2-5) unstable; urgency=low + + * Add conflicts to mico and aolserver, which have conflicting files + (Closes: #274781) + + -- OndÅ™ej Surý Wed, 6 Oct 2004 12:25:26 +0200 + +nsd (2.1.2-4) unstable; urgency=high + + * Exclude nsd-xfer from dh_strip to fix FTBFS on mips, this will + reset 'sarge' counter, so urgency set to high. + + -- OndÅ™ej Surý Tue, 24 Aug 2004 14:29:05 +0200 + +nsd (2.1.2-3) unstable; urgency=medium + + * Also update zparser.c and now build in pbuilder environment. + * Add bison to build depends. + + -- OndÅ™ej Surý Tue, 17 Aug 2004 14:35:31 +0200 + +nsd (2.1.2-2) unstable; urgency=medium + + * Fix usage of '@' in zone data (urgency to medium, to push this + changes to sarge). + + -- OndÅ™ej Surý Tue, 17 Aug 2004 13:53:06 +0200 + +nsd (2.1.2-1) unstable; urgency=low + + * New upstream release. + + -- OndÅ™ej Surý Tue, 3 Aug 2004 13:03:40 +0200 + +nsd (2.1.1-1) unstable; urgency=low + + * New upstream release. + + -- OndÅ™ej Surý Fri, 2 Jul 2004 11:06:02 +0200 + +nsd (2.1.0-1) unstable; urgency=low + + * New upstream release. + + -- OndÅ™ej Surý Tue, 18 May 2004 14:18:38 +0200 + +nsd (2.0.2-1) unstable; urgency=low + + * New upstream release. + + -- OndÅ™ej Surý Mon, 29 Mar 2004 09:44:42 +0200 + +nsd (2.0.1-1) unstable; urgency=low + + * New upstream release. + + -- OndÅ™ej Surý Mon, 15 Mar 2004 15:43:52 +0100 + +nsd (2.0.0-2) unstable; urgency=low + + * nsdc rebuild in postinst is run as nsd:nsd user (Closes: #234508). + * nsd-xfer is included, so no need to depend on bind (Closes: #171184). + + -- Ondrej Sury Tue, 24 Feb 2004 15:56:24 +0100 + +nsd (2.0.0-1) unstable; urgency=low + + * New upstream stable release. + * Now includes nsd-xfer which is nothing more then renamed named-xfer + binary from bind 8.4.4 package. + + -- Ondrej Sury Mon, 23 Feb 2004 14:14:47 +0100 + +nsd (1.2.4-1) unstable; urgency=low + + * New upstream bugfix release. + * Never uploaded. + + -- Ondrej Sury Thu, 8 Jan 2004 11:29:55 +0100 + +nsd (1.2.3-1) unstable; urgency=low + + * New upstream release. + * Change policy to 3.6.1 + + -- Ondrej Sury Tue, 18 Nov 2003 09:41:17 +0100 + +nsd (1.2.2-2) unstable; urgency=low + + * Add check for IPv6 to /etc/default/nsd to make 'nsdc start' work + on IPv4 only hosts. + * Fix s/==/=/ in test condition in shell script (Closes: #218412) + * Switched to cdbs build system. + + -- Ondrej Sury Fri, 31 Oct 2003 10:09:30 +0100 + +nsd (1.2.2-1) unstable; urgency=low + + * New upstream release. + * Merges #59, #60 upstream bugs and #184570 verbosity patch. + + -- Ondrej Sury Mon, 4 Aug 2003 13:29:42 +0200 + +nsd (1.2.1-1) unstable; urgency=low + + * New upstream release. + * Fix #59: NSD returns FORMERR when the query name is >= 246 bytes. + * Fix #60: Zonec runs out of file descriptors with many zones + + -- Ondrej Sury Thu, 17 Jul 2003 12:23:18 +0200 + +nsd (1.2.0-5) unstable; urgency=low + + * Enable IPv6 support (Closes: #201541,#186368) + * Check for pidfile for 5 seconds after startup, so we can let user + know, that startup failed (Closes: #169750) + * Add creation of nsd user and group to postinst again. + * Moved database file to /var/lib/nsd/nsd.db, updated man page. + * Automagickaly detect (-d /proc/sys/net/ipv6/) IPv6 and set -4 flag + if not enabled. NSD won't run without it. + * Fix more lintian errors. + * Applied patch from Paul Slootman to make nsdc + less verbose (configurable). (Closes: #184570) + + -- Ondrej Sury Wed, 16 Jul 2003 15:45:45 +0200 + +nsd (1.2.0-4) unstable; urgency=low + + * 'Uh, oh, /etc/nsd/ is not packaged when empty' release. + * Add new debian specific parameter 'rebuild' for startup script, + when set to 'true' it rebuilds zone database on startup. + * fix options in /etc/init.d/nsd, because upstream changed parameters, + please check your /etc/default/nsd + + -- Ondrej Sury Mon, 14 Jul 2003 12:43:21 +0200 + +nsd (1.2.0-3) unstable; urgency=low + + * Moved /etc/nsd/nsd.zones.sample to /usr/share/doc/nsd/examples/ + * Unlink /etc/default/nsd.sample after make install. + * Change policy version to 3.6.0 + * Fix all lintian warnings and errors. + + -- Ondrej Sury Mon, 14 Jul 2003 12:28:25 +0200 + +nsd (1.2.0-2) unstable; urgency=low + + * Fix debian/rules install target. (Closes: #200637) + + -- Ondrej Sury Mon, 14 Jul 2003 11:40:54 +0200 + +nsd (1.2.0-1) unstable; urgency=low + + * New upstream release. + * Distributed CREDITS file into debian/copyright and debian/control. + + -- Ondrej Sury Wed, 9 Jul 2003 15:52:33 +0200 + +nsd (1.0.3-2) unstable; urgency=low + + * Fixed mandir location to /usr/share/man (Closes: #199652) + + -- Ondrej Sury Wed, 2 Jul 2003 15:31:53 +0200 + +nsd (1.0.3-1) unstable; urgency=low + + * New upstream stable release. + * Fix multiline string in rfc1876.c, patch from Joshua Kwan (Closes: #195162) + * Fix references from /etc/nsd/nsdc.conf to /etc/default/nsd (Closes: #184575) + + -- Ondrej Sury Thu, 19 Jun 2003 12:03:46 +0200 + +nsd (1.0.2final-1) unstable; urgency=low + + * New upstrem release. + + -- Ondrej Sury Thu, 9 Jan 2003 12:24:31 +0100 + +nsd (1.0.2b2-1) unstable; urgency=low + + * New upstream release. (no BTS bugs fixed.) + + -- Ondrej Sury Wed, 11 Dec 2002 22:31:51 +0100 + +nsd (1.0.2b1-7) unstable; urgency=low + + * Modified /etc/init.d/nsd to use start-stop-daemon, but I am still unable + to convice start-stop-daemon to check whether nsd has started succesfully. + * Add creation of nsd group and user to postinst (same as in bind9 postinst), + nsd will now setuid by default to nsd user, for chroot it requires setting + up additional syslogd socket, so it cannot be made as default :( + + -- Ondrej Sury Wed, 20 Nov 2002 15:50:17 +0100 + +nsd (1.0.2b1-5) unstable; urgency=low + + * Put nsdc back in /usr/sbin, /etc/init.d/nsd is just wrapper around it. + (really really fix that force-reload lintian error) + * Add libwrap0-dev | libwrap-dev to Build-Depends: (I hope it closes #169703) + + -- Ondrej Sury Tue, 19 Nov 2002 09:54:54 +0100 + +nsd (1.0.2b1-4) unstable; urgency=low + + * wrote man page for nsd-notify (lintian error) + * removed executable #!/bin/sh line from /etc/default/nsd (lintian warning) + * add force-reload to /etc/init.d/nsd script (lintian error) + + -- Ondrej Sury Mon, 18 Nov 2002 11:42:15 +0100 + +nsd (1.0.2b1-3) unstable; urgency=low + + * Fixed /etc/default/nsdc -> /etc/default/nsd in /etc/init.d/nsd + + -- Ondrej Sury Mon, 18 Nov 2002 10:56:55 +0100 + +nsd (1.0.2b1-2) unstable; urgency=low + + * Fixed some lintian errors. + + -- Ondrej Sury Fri, 15 Nov 2002 21:52:02 +0100 + +nsd (1.0.2b1-1) unstable; urgency=low + + * Initial Release. + * Disable ipv6 for a while, nsd refuses to start on machines without ipv6. + + -- Ondrej Sury Fri, 15 Nov 2002 13:42:55 +0100 + --- nsd-2.3.7.orig/debian/docs +++ nsd-2.3.7/debian/docs @@ -0,0 +1,6 @@ +README +README.icc +TODO +RELNOTES +DIFFERENCES +REQUIREMENTS --- nsd-2.3.7.orig/debian/dirs +++ nsd-2.3.7/debian/dirs @@ -0,0 +1,5 @@ +etc/nsd +etc/nsd/keys +usr/sbin +etc/default +var/lib/nsd --- nsd-2.3.7.orig/debian/patches/nsdc-verbose.patch +++ nsd-2.3.7/debian/patches/nsdc-verbose.patch @@ -0,0 +1,13 @@ +--- nsd-1.2.2.orig/nsdc.sh.in ++++ nsd-1.2.2/nsdc.sh.in +@@ -68,6 +68,10 @@ + . ${configfile} + fi + ++if [ "${verbose}" = true ]; then ++ ZONEC_VERBOSE=-v ++fi ++ + # + # You sure heard this many times before: NO USER SERVICEABLE PARTS BELOW + # --- nsd-2.3.7.orig/debian/patches/nsd-man.patch +++ nsd-2.3.7/debian/patches/nsd-man.patch @@ -0,0 +1,20 @@ +--- nsd-1.2.2.orig/nsd.8 ++++ nsd-1.2.2/nsd.8 +@@ -87,7 +87,7 @@ + .Xr nsdc 8 + start + command invoked from a +-.Em /etc/rc.d/nsd.sh ++.Em /etc/init.d/nsd + script or similar at the operating system startup. + .Pp + The available options are: +@@ -116,7 +116,7 @@ + Use the specified + .Ar database + instead of the default of +-.Em /etc/nsd/nsd.db . ++.Em /var/lib/nsd/nsd.db . + + .It Fl h + Print help information and exit.