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 #741530, regarding Multiple dhcp instances 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.) -- 741530: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=741530 Debian Bug Tracking System Contact [email protected] with problems
--- Begin Message ---Package: isc-dhcp-relay Version: 4.2.2.dfsg.1-5+deb70u6 HiI need to have multiple instances of dhcp-relay (each VLAN on my firewall can have a different instance, with a dedicated DHCP server).I adapt the launch script to do that : ===== START OF /etc/init.d/isc-dhcp-relay ==== #!/bin/sh # # ### BEGIN INIT INFO # Provides: isc-dhcp-relay # Required-Start: $remote_fs $network # Required-Stop: $remote_fs $network # Should-Start: $local_fs # Should-Stop: $local_fs # Default-Start: 2 3 4 5 # Default-Stop: 0 1 6 # Short-Description: DHCP relay # Description: Dynamic Host Configuration Protocol Relay ### END INIT INFO # It is not safe to start if we don't have a default configuration... if [ ! -f /etc/default/isc-dhcp-relay ]; then echo "/etc/default/isc-dhcp-relay does not exist! - Aborting..." echo "Run 'dpkg-reconfigure isc-dhcp-relay' to fix the problem." exit 1 fi case "$1" in start) for file in `ls /etc/default/isc-dhcp-relay*`; do SERVERS="" INTERFACES="" OPTIONS="" . $file file=`basename $file` echo $file DHCRELAYPID=/var/run/dhcrelay-$file.pid OPTIONS="$OPTIONS -pf $DHCRELAYPID"# Build command line for interfaces (will be passed to dhrelay below.)IFCMD="" if test "$INTERFACES" != ""; then for I in $INTERFACES; do IFCMD=${IFCMD}"-i "${I}" " done fistart-stop-daemon --start --quiet --pidfile $DHCRELAYPID \ --exec /usr/sbin/dhcrelay -- -q $OPTIONS $IFCMD $SERVERSdone ;; stop) for file in `ls /etc/default/isc-dhcp-relay*`; do file=`basename $file` echo $file DHCRELAYPID=/var/run/dhcrelay-$file.pidstart-stop-daemon --stop --quiet --pidfile $DHCRELAYPIDdone ;; restart | force-reload) $0 stop sleep 2 $0 start ;; *)echo "Usage: /etc/init.d/isc-dhcp-relay {start|stop|restart|force-reload}"exit 1 esac exit 0 ======== END OF FILE =======You can create multiple /etc/default/isc-dhcp-relay files with different extensions.Thanks a lot ! Dom<<attachment: dominique_fournier.vcf>>
--- 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 ---

