tags 416670 + patch
thanks

Hi,

Attached is the diff for my bootp 2.4.3-16.1 NMU.
diff -u bootp-2.4.3/debian/control bootp-2.4.3/debian/control
--- bootp-2.4.3/debian/control
+++ bootp-2.4.3/debian/control
@@ -7,7 +7,7 @@
 
 Package: bootp
 Architecture: any
-Depends: ${shlibs:Depends}, ${misc:Depends}, netbase
+Depends: ${shlibs:Depends}, ${misc:Depends}, netbase, update-inetd
 Description: server for the bootp protocol with DHCP support
  This is a server for the bootp protocol; which allows network administrator
  to setup networking information for clients via an /etc/bootptab on a server
diff -u bootp-2.4.3/debian/changelog bootp-2.4.3/debian/changelog
--- bootp-2.4.3/debian/changelog
+++ bootp-2.4.3/debian/changelog
@@ -1,3 +1,11 @@
+bootp (2.4.3-16.1) unstable; urgency=low
+
+  * Non-maintainer upload durin BSP.
+  * Depend on update-inetd for postrm.
+  * conditional call of update-inetd in postrm. (Closes: #416670)
+
+ -- Martin Zobel-Helas <[EMAIL PROTECTED]>  Thu, 17 May 2007 12:10:15 +0200
+
 bootp (2.4.3-16) unstable; urgency=low
 
   * Set Standards-Version to 3.7.2.
diff -u bootp-2.4.3/debian/postrm bootp-2.4.3/debian/postrm
--- bootp-2.4.3/debian/postrm
+++ bootp-2.4.3/debian/postrm
@@ -2,7 +2,9 @@
 # $Id: postrm,v 1.1 1999/03/14 04:26:30 herbert Exp $
 
 if [ "$1" = remove -o "$1" = purge ]; then
+    if [ -f /usr/sbin/update-inetd ]; then
 	update-inetd --remove "bootps		dgram	udp	wait	root	/usr/sbin/bootpd	bootpd -i -t 120"
+    fi
 fi
 
 #DEBHELPER#

Reply via email to