Your message dated Wed, 24 Mar 2010 20:28:50 +0000 (WET)
with message-id <[email protected]>
and subject line Package dhcp-relay has been removed from Debian
has caused the Debian Bug report #229194,
regarding dhcp-relay: silently continues in case of errors
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
229194: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=229194
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: dhcp-relay
Version: 2.0pl5-16.1
Severity: normal
Tags: patch

Hi,
dhcp-relay doesn't exit in case of problems. Furthermore it doesn't
print anything about it's status. Attached patch fixes this:

--- /tmp/dhcrelay.orig  2004-01-23 15:36:01.000000000 +0100
+++ dhcp-relay  2004-01-23 15:39:43.000000000 +0100
@@ -1,9 +1,11 @@
-#!/bin/sh
+#!/bin/sh -e
 #
 # $Id: dhcp-relay.init.d,v 1.3.2.3 2003/09/10 19:49:21 peloy Exp $
 #
 
-test -x /usr/sbin/dhcrelay || exit 0
+DAEMON="/usr/sbin/dhcrelay"
+
+test -x $DAEMON || exit 0
 
 # It is not safe to start if we don't have a default configuration...
 if [ ! -f /etc/default/dhcp-relay ]; then
@@ -32,12 +34,16 @@
 
 case "$1" in
        start)
+               echo -n "Starting DHCP relay server: dhcrelay"
                start-stop-daemon --start --quiet --pidfile $DHCRELAYPID \
-                       --exec /usr/sbin/dhcrelay -- -q $OPTIONS $IFCMD \
+                       --exec $DAEMON -- -q $OPTIONS $IFCMD \
                        $DHCP_SERVERS
+               echo "."
                ;;
        stop)
+               echo -n "Stopping DHCP relay server: dhcrelay"
                start-stop-daemon --stop --quiet --pidfile $DHCRELAYPID
+               echo "."
                ;;
        restart | force-reload)
                $0 stop


-- System Information:
Debian Release: testing/unstable
Architecture: powerpc
Kernel: Linux bogon 2.4.24-ben1-albook12 #1 Wed Jan 21 14:34:25 CET 2004 ppc
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8



--- End Message ---
--- Begin Message ---
Version: 2.0pl5dfsg1-20.2+rm

You filed the bug http://bugs.debian.org/229194 in Debian BTS
against the package dhcp-relay. I'm closing it at *unstable*, but it will
remain open for older distributions.

For more information about this package's removal, read
http://bugs.debian.org/446386. That bug might give the reasons why
this package was removed and suggestions of possible replacements.

Don't hesitate to reply to this mail if you have any question.

Thank you for your contribution to Debian.

--
Marco Rodrigues


--- End Message ---

Reply via email to