Your message dated Wed, 05 Aug 2026 17:31:09 +0000
with message-id <[email protected]>
and subject line Bug#1143544: Removed package(s) from unstable
has caused the Debian Bug report #496797,
regarding dhcp3-relay init gets damaged by xen-utils-common package
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.)


-- 
496797: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=496797
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: dhcp3-relay
Version: 3.0.4-13
Severity: minor

Hello,

if you install the dhcp3-relay package version 3.0.4-13 along with the
xen-utils-common package version 3.0.3-0-2 you will probably have:

~# ls -l /etc/rc*.d/*dhcp3-relay
lrwxrwxrwx 1 root root 21 Aug 27 14:28 /etc/rc0.d/K20dhcp3-relay -> 
../init.d/dhcp3-relay
lrwxrwxrwx 1 root root 21 Aug 27 14:28 /etc/rc1.d/K20dhcp3-relay -> 
../init.d/dhcp3-relay
lrwxrwxrwx 1 root root 21 Aug 27 14:28 /etc/rc2.d/S20dhcp3-relay -> 
../init.d/dhcp3-relay
lrwxrwxrwx 1 root root 21 Aug 27 14:28 /etc/rc3.d/S20dhcp3-relay -> 
../init.d/dhcp3-relay
lrwxrwxrwx 1 root root 21 Aug 27 14:28 /etc/rc4.d/S20dhcp3-relay -> 
../init.d/dhcp3-relay
lrwxrwxrwx 1 root root 21 Aug 27 14:28 /etc/rc5.d/S20dhcp3-relay -> 
../init.d/dhcp3-relay
lrwxrwxrwx 1 root root 21 Aug 27 14:28 /etc/rc6.d/K20dhcp3-relay -> 
../init.d/dhcp3-relay
~# ls -l /etc/rc*.d/*xend
lrwxrwxrwx 1 root root 14 Aug 18 15:17 /etc/rc0.d/K21xend -> ../init.d/xend
lrwxrwxrwx 1 root root 14 Aug 18 15:17 /etc/rc1.d/K21xend -> ../init.d/xend
lrwxrwxrwx 1 root root 14 Aug 18 15:17 /etc/rc2.d/S20xend -> ../init.d/xend
lrwxrwxrwx 1 root root 14 Aug 18 15:17 /etc/rc3.d/S20xend -> ../init.d/xend
lrwxrwxrwx 1 root root 14 Aug 18 15:17 /etc/rc4.d/S20xend -> ../init.d/xend
lrwxrwxrwx 1 root root 14 Aug 18 15:17 /etc/rc5.d/S20xend -> ../init.d/xend
lrwxrwxrwx 1 root root 14 Aug 18 15:17 /etc/rc6.d/K21xend -> ../init.d/xend
~# 

This leads to the situation where /etc/rc2.d/S21dhcp3-relay is started
while /etc/rc2.d/S20xend reconfigures your ethernet interfaces afterwards.

For this reason dhcrelay3 can't get an IP-address to fill in the "Relay agent
IP address" field of the BOOTP-protocol. Now, the remote DHCP-server has
no clue that it's talking with a relay and we won't ever receive an answer
by the server.

Starting /etc/init.d/dhcp3-relay after /etc/init.d/xend helps:
###
update-rc.d -f dhcp3-relay remove
update-rc.d dhcp3-relay start 21 2 3 4 5 . stop 20 0 1 6 .
/etc/init.d/dhcp3-relay restart
###

Now we have:

~# ls -l /etc/rc*.d/*dhcp3-relay
lrwxrwxrwx 1 root root 21 Aug 27 14:28 /etc/rc0.d/K20dhcp3-relay -> 
../init.d/dhcp3-relay
lrwxrwxrwx 1 root root 21 Aug 27 14:28 /etc/rc1.d/K20dhcp3-relay -> 
../init.d/dhcp3-relay
lrwxrwxrwx 1 root root 21 Aug 27 14:28 /etc/rc2.d/S21dhcp3-relay -> 
../init.d/dhcp3-relay
lrwxrwxrwx 1 root root 21 Aug 27 14:28 /etc/rc3.d/S21dhcp3-relay -> 
../init.d/dhcp3-relay
lrwxrwxrwx 1 root root 21 Aug 27 14:28 /etc/rc4.d/S21dhcp3-relay -> 
../init.d/dhcp3-relay
lrwxrwxrwx 1 root root 21 Aug 27 14:28 /etc/rc5.d/S21dhcp3-relay -> 
../init.d/dhcp3-relay
lrwxrwxrwx 1 root root 21 Aug 27 14:28 /etc/rc6.d/K20dhcp3-relay -> 
../init.d/dhcp3-relay
~# ls -l /etc/rc*.d/*xend
lrwxrwxrwx 1 root root 14 Aug 18 15:17 /etc/rc0.d/K21xend -> ../init.d/xend
lrwxrwxrwx 1 root root 14 Aug 18 15:17 /etc/rc1.d/K21xend -> ../init.d/xend
lrwxrwxrwx 1 root root 14 Aug 18 15:17 /etc/rc2.d/S20xend -> ../init.d/xend
lrwxrwxrwx 1 root root 14 Aug 18 15:17 /etc/rc3.d/S20xend -> ../init.d/xend
lrwxrwxrwx 1 root root 14 Aug 18 15:17 /etc/rc4.d/S20xend -> ../init.d/xend
lrwxrwxrwx 1 root root 14 Aug 18 15:17 /etc/rc5.d/S20xend -> ../init.d/xend
lrwxrwxrwx 1 root root 14 Aug 18 15:17 /etc/rc6.d/K21xend -> ../init.d/xend
~# 

That's ok!

Regards,
  Fabian




--- End Message ---
--- Begin Message ---
Version: 4.4.3-P1-8+rm

Dear submitter,

as the package isc-dhcp has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/1143544

The version of this package that was in Debian prior to this removal
can still be found using https://snapshot.debian.org/.

Please note that the changes have been done on the master archive and
will not propagate to any mirrors until the next dinstall run at the
earliest.

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
[email protected].

Debian distribution maintenance software
pp.
Thorsten Alteholz (the ftpmaster behind the curtain)

--- End Message ---

Reply via email to