Package: bind9
Severity: minor
Tags: patch
Hi,
your 'postrm' , 'postinst' scripts manually call 'update-rc.d'. These
invocations are also added by debhelper. So they end up twice in the
resulting scripts. The attached patch removes the manual calls.
Please consider applying.
Regards,
Stefan
-- System Information:
Debian Release: testing/unstable
APT prefers unstable
APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Shell: /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15-1-686
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
diff -ur bind9-9.3.2/debian/postinst bind9-9.3.2.mod/debian/postinst
--- bind9-9.3.2/debian/postinst 2006-03-14 19:18:19.000000000 +0100
+++ bind9-9.3.2.mod/debian/postinst 2006-03-14 19:17:39.000000000 +0100
@@ -57,10 +57,6 @@
chmod g+rwx /var/run/bind/run /var/cache/bind
fi
- if [ -x /etc/init.d/bind9 ]; then
- update-rc.d bind9 defaults 15 85 >/dev/null
- fi
-
fi
diff -ur bind9-9.3.2/debian/postrm bind9-9.3.2.mod/debian/postrm
--- bind9-9.3.2/debian/postrm 2006-03-14 19:18:19.000000000 +0100
+++ bind9-9.3.2.mod/debian/postrm 2006-03-14 19:17:31.000000000 +0100
@@ -4,7 +4,6 @@
then
rm -f /etc/bind/rndc.key /etc/default/bind9
rmdir /etc/bind >/dev/null 2>&1 || true
- update-rc.d bind9 remove >/dev/null
fi
#DEBHELPER#