Version in base suite: 0.5.4 Base version: runit-services_0.5.4 Target version: runit-services_0.5.5~deb12u1 Base file: /srv/ftp-master.debian.org/ftp/pool/main/r/runit-services/runit-services_0.5.4.dsc Target file: /srv/ftp-master.debian.org/policy/pool/main/r/runit-services/runit-services_0.5.5~deb12u1.dsc debian/changelog | 14 ++++++++++++++ sv/dhclient/check | 12 ++++++++---- sv/dhclient/conf/interfaces | 2 +- sv/dhclient/run | 4 ++-- 4 files changed, 25 insertions(+), 7 deletions(-) gpgv: Signature made Fri Jan 20 14:23:19 2023 UTC gpgv: using RSA key 9236557B170C87F8821C0AC3C1E0D92E986F7C7E gpgv: Can't check signature: No public key dpkg-source: warning: failed to verify signature on /srv/release.debian.org/tmp/tmpzwzb1zqv/runit-services_0.5.4.dsc diff -Nru runit-services-0.5.4/debian/changelog runit-services-0.5.5~deb12u1/debian/changelog --- runit-services-0.5.4/debian/changelog 2023-01-19 14:13:58.000000000 +0000 +++ runit-services-0.5.5~deb12u1/debian/changelog 2023-08-27 21:00:33.000000000 +0000 @@ -1,3 +1,17 @@ +runit-services (0.5.5~deb12u1) bookworm; urgency=medium + + * Rebuild for bookworm. + + -- Lorenzo Puliti Sun, 27 Aug 2023 23:00:33 +0200 + +runit-services (0.5.5) unstable; urgency=medium + + * dhclient: don't hardcode eth1 interface to + avoid flood of syslog in systems where eth1 + does not exist (Closes: #1033542) + + -- Lorenzo Puliti Tue, 08 Aug 2023 19:49:28 +0200 + runit-services (0.5.4) unstable; urgency=medium * Add a flaky autopkgtest diff -Nru runit-services-0.5.4/sv/dhclient/check runit-services-0.5.5~deb12u1/sv/dhclient/check --- runit-services-0.5.4/sv/dhclient/check 2022-11-20 13:05:32.000000000 +0000 +++ runit-services-0.5.5~deb12u1/sv/dhclient/check 2023-03-27 15:44:25.000000000 +0000 @@ -1,5 +1,9 @@ #!/bin/sh -. ./conf/interfaces || exit 1 -for i in $INTERFACES; do - ifconfig $i |grep 'inet' >/dev/null || exit 1 -done +. ./conf/interfaces +if [ -n "$INTERFACES" ]; then + for i in $INTERFACES; do + ifconfig $i |grep 'inet' >/dev/null || exit 1 + done +else + ifconfig |grep 'inet' >/dev/null || exit 1 +fi diff -Nru runit-services-0.5.4/sv/dhclient/conf/interfaces runit-services-0.5.5~deb12u1/sv/dhclient/conf/interfaces --- runit-services-0.5.4/sv/dhclient/conf/interfaces 2022-11-20 13:05:32.000000000 +0000 +++ runit-services-0.5.5~deb12u1/sv/dhclient/conf/interfaces 2023-03-27 15:44:25.000000000 +0000 @@ -1 +1 @@ -INTERFACES=eth1 +INTERFACES= diff -Nru runit-services-0.5.4/sv/dhclient/run runit-services-0.5.5~deb12u1/sv/dhclient/run --- runit-services-0.5.4/sv/dhclient/run 2022-12-14 22:54:41.000000000 +0000 +++ runit-services-0.5.5~deb12u1/sv/dhclient/run 2023-03-27 15:44:55.000000000 +0000 @@ -1,10 +1,10 @@ #!/usr/bin/env /lib/runit/invoke-run #Copyright: 2005-2008 Gerrit Pape -# 2022 Lorenzo Puliti +# 2022-2023 Lorenzo Puliti #License: BSD-3-Clause exec 2>&1 . ./conf/interfaces || exit 162 -exec chpst -m12000000 dhclient -d $INTERFACES +exec chpst -m12000000 dhclient -d ${INTERFACES:-}