Package: pdnsd
Version: 1.2.4par-0.1
Followup-For: Bug #389609
Attached patch fixes the problem.
I had to fill in some address in the changelog; please replace it with
whoever is going to upload this thing.
Ciao. Vincent.
-- System Information:
Debian Release: 3.1
Architecture: i386 (i686)
Kernel: Linux 2.6.8-3-686
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)
Versions of packages pdnsd depends on:
ii libc6 2.3.2.ds1-22sarge4 GNU C Library: Shared libraries an
diff -rud pdnsd-1.2.4par-0.1/debian/changelog
pdnsd-1.2.4par-0.2/debian/changelog
--- pdnsd-1.2.4par-0.1/debian/changelog 2006-09-29 19:11:48.059377000 +0200
+++ pdnsd-1.2.4par-0.2/debian/changelog 2006-09-29 22:41:41.026859275 +0200
@@ -1,3 +1,12 @@
+pdnsd (1.2.4par-0.2) unstable; urgency=low
+
+ * Non-maintainer upload.
+ * Do not create special /var/cache/pdnsd home dir; it is already installed
+ through the file list.
+ * Conflict with bind and bind9. (Closes: #389609)
+
+ -- Vincent Zweije <[EMAIL PROTECTED]> Fri, 29 Sep 2006 22:02:36 +0200
+
pdnsd (1.2.4par-0.1) unstable; urgency=low
* Non-maintainer upload.
diff -rud pdnsd-1.2.4par-0.1/debian/control pdnsd-1.2.4par-0.2/debian/control
--- pdnsd-1.2.4par-0.1/debian/control 2006-09-29 19:11:48.227353000 +0200
+++ pdnsd-1.2.4par-0.2/debian/control 2006-09-29 22:17:41.888486773 +0200
@@ -1,6 +1,6 @@
Source: pdnsd
Section: net
-Priority: optional
+Priority: extra
Maintainer: Takuo KITAME <[EMAIL PROTECTED]>
Build-Depends: debhelper (>= 4.1.68)
Standards-Version: 3.6.1
@@ -9,7 +9,7 @@
Architecture: any
Depends: ${shlibs:Depends}, adduser
Suggests: resolvconf
-Conflicts: dnrd
+Conflicts: bind, bind9, dnrd
Description: Proxy DNS Server
pdnsd is a proxy dns server with permanent caching (the cache contents are
written to hard disk on exit) that is designed to cope with unreachable or
diff -rud pdnsd-1.2.4par-0.1/debian/postinst pdnsd-1.2.4par-0.2/debian/postinst
--- pdnsd-1.2.4par-0.1/debian/postinst 2006-09-29 19:11:48.388330000 +0200
+++ pdnsd-1.2.4par-0.2/debian/postinst 2006-09-29 21:56:44.751871653 +0200
@@ -2,7 +2,7 @@
set -e
-id pdnsd > /dev/null 2>&1 || adduser --system --ingroup proxy --home
/var/cache/pdnsd --gecos pdnsd pdnsd || true
+id pdnsd > /dev/null 2>&1 || adduser --system --ingroup proxy --home
/var/cache/pdnsd --no-create-home --gecos pdnsd pdnsd || true
if [ "$1" = "configure" -a -n "$2" ] && dpkg --compare-versions "$2" lt "1.1"
; then
if [ -f /var/cache/pdnsd/pdnsd.cache ]; then
diff -rud pdnsd-1.2.4par-0.1/debian/postrm pdnsd-1.2.4par-0.2/debian/postrm
--- pdnsd-1.2.4par-0.1/debian/postrm 2006-09-29 19:11:48.442323000 +0200
+++ pdnsd-1.2.4par-0.2/debian/postrm 2006-09-29 22:21:49.126178953 +0200
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/sh -e
case "$1" in
purge)