tags 417035 + patch thanks Hi,
Attached is the diff for my nullidentd 1.0-3.1 NMU during the current BSP which I uploaded to delayed-0. -- Luk Claes - http://people.debian.org/~luk - GPG key 1024D/9B7C328D Fingerprint: D5AF 25FB 316B 53BB 08E7 F999 E544 DE07 9B7C 328D
diff -u nullidentd-1.0/debian/control nullidentd-1.0/debian/control --- nullidentd-1.0/debian/control +++ nullidentd-1.0/debian/control @@ -8,7 +8,7 @@ Package: nullidentd Provides: ident-server Architecture: any -Depends: ${shlibs:Depends}, netbase +Depends: ${shlibs:Depends}, netbase, update-inetd Description: small, fast identd daemon nullidentd is a small, fast and secure identd daemon. It returns a static string for every query. diff -u nullidentd-1.0/debian/changelog nullidentd-1.0/debian/changelog --- nullidentd-1.0/debian/changelog +++ nullidentd-1.0/debian/changelog @@ -1,3 +1,11 @@ +nullidentd (1.0-3.1) unstable; urgency=high + + * Non-maintainer upload during BSP. + * Fix unconditional use of update-inetd in postrm (Closes: #417035). + * Depend on update-inetd as it is used in prerm and postinst. + + -- Luk Claes <[EMAIL PROTECTED]> Thu, 17 May 2007 02:00:08 +0200 + nullidentd (1.0-3) unstable; urgency=low * Compiles -Wall -pedantic clean diff -u nullidentd-1.0/debian/postrm nullidentd-1.0/debian/postrm --- nullidentd-1.0/debian/postrm +++ nullidentd-1.0/debian/postrm @@ -17,7 +17,9 @@ # for details, see /usr/doc/packaging-manual/ if [ "$1" = "purge" ]; then - update-inetd --remove "/usr/sbin/nullidentd" + if [ -f /usr/sbin/update-inetd ]; then + update-inetd --remove "/usr/sbin/nullidentd" + fi fi # dh_installdeb will replace this with shell code automatically