Your message dated Sat, 15 Nov 2025 11:21:45 +0000 with message-id <736c7150dc08501cc89945035c406eaf9688e144.camel@adam-barratt.org.uk> and subject line Closing requests for updates included in 13.2 has caused the Debian Bug report #1110859, regarding trixie-pu: package ikvswitch/1.0.4 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 owner@bugs.debian.org immediately.) -- 1110859: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1110859 Debian Bug Tracking System Contact owner@bugs.debian.org with problems
--- Begin Message ---
- To: Debian Bug Tracking System <submit@bugs.debian.org>
- Subject: trixie-pu: package ikvswitch/1.0.4
- From: Thomas Goirand <zigo@debian.org>
- Date: Mon, 11 Aug 2025 16:53:16 +0200
- Message-id: <175492399689.163214.11991087979075297027.reportbug@zbuz.infomaniak.ch>
Package: release.debian.org Severity: normal Tags: trixie X-Debbugs-Cc: ikvswitch@packages.debian.org Control: affects -1 + src:ikvswitch User: release.debian.org@packages.debian.org Usertags: pu Hi, [ Reason ] A few changes (3 changes) are needed for ikvswitch to use Trixie VMs at its core and for it to work correctly. 1/ First, in its config file, ikvswitch.conf, I changed: DEBIAN_RELEASE=bookworm by: DEBIAN_RELEASE=trixie 2/ I added "|| true" to "ip link set down dev ${HOST_IPMI_BRIDGE_NAME}" to make it graceful if the interface doesn't exist when tearing down host networking. This makes the script indenpotent. 3/ Enable forwarding in /etc/sysctl.d in /usr/bin/ikvswitch-setup, as /etc/sysctl.conf doesn't exist anymore in Trixie. [ Impact ] Not working with Trixie VMs by default. Issue when tearing down host networking. [ Tests ] This is part of my OpenStack CI, and in fact, it is one of the main component for testing. So the changed scripts are ran on each of my CI runs. [ Risks ] Not much... [ Checklist ] [x] *all* changes are documented in the d/changelog [x] I reviewed all changes and I approve them [x] attach debdiff against the package in (old)stable [x] the issue is verified as fixed in unstable Please allow me to upload ikvswitch 1.0.4+deb13u1. Cheers, Thomas Goirand (zigo)diff -Nru ikvswitch-1.0.4/debian/changelog ikvswitch-1.0.4+deb13u1/debian/changelog --- ikvswitch-1.0.4/debian/changelog 2025-04-11 14:07:58.000000000 +0200 +++ ikvswitch-1.0.4+deb13u1/debian/changelog 2025-08-03 22:54:49.000000000 +0200 @@ -1,3 +1,12 @@ +ikvswitch (1.0.4+deb13u1) trixie; urgency=medium + + * Write in /etc/sysctl.d/00-forward-internet.conf as sysctl.conf is gone in + Trixie. + * Use Trixie as default distro for the setup. + * Add || true when doing "ip link set down dev" if ipmi bridge. + + -- Thomas Goirand <zigo@debian.org> Sun, 03 Aug 2025 22:54:49 +0200 + ikvswitch (1.0.4) unstable; urgency=medium * Allow cl1-network-2 to adverize BGP. diff -Nru ikvswitch-1.0.4/etc/ikvswitch/ikvswitch.conf ikvswitch-1.0.4+deb13u1/etc/ikvswitch/ikvswitch.conf --- ikvswitch-1.0.4/etc/ikvswitch/ikvswitch.conf 2025-04-11 14:07:58.000000000 +0200 +++ ikvswitch-1.0.4+deb13u1/etc/ikvswitch/ikvswitch.conf 2025-08-03 22:54:49.000000000 +0200 @@ -148,7 +148,7 @@ ### Other params ### #################### # Name of the Debian release to use -DEBIAN_RELEASE=bookworm +DEBIAN_RELEASE=trixie # Debian mirror to use for debootstrap DEBIAN_MIRROR=http://deb.debian.org/debian diff -Nru ikvswitch-1.0.4/usr/bin/ikvswitch-host-networking ikvswitch-1.0.4+deb13u1/usr/bin/ikvswitch-host-networking --- ikvswitch-1.0.4/usr/bin/ikvswitch-host-networking 2025-04-11 14:07:58.000000000 +0200 +++ ikvswitch-1.0.4+deb13u1/usr/bin/ikvswitch-host-networking 2025-08-03 22:54:49.000000000 +0200 @@ -51,7 +51,7 @@ ########################### ### ipmi_sim networking ### ########################### - ip link set down dev ${HOST_IPMI_BRIDGE_NAME} + ip link set down dev ${HOST_IPMI_BRIDGE_NAME} || true ip addr delete ${HOST_IPMI_IP}/24 dev ${HOST_IPMI_BRIDGE_NAME} || true brctl delif ${HOST_IPMI_BRIDGE_NAME} ${VM_TAP_NIC} || true brctl delbr ${HOST_IPMI_BRIDGE_NAME} || true diff -Nru ikvswitch-1.0.4/usr/bin/ikvswitch-setup ikvswitch-1.0.4+deb13u1/usr/bin/ikvswitch-setup --- ikvswitch-1.0.4/usr/bin/ikvswitch-setup 2025-04-11 14:07:58.000000000 +0200 +++ ikvswitch-1.0.4+deb13u1/usr/bin/ikvswitch-setup 2025-08-03 22:54:49.000000000 +0200 @@ -127,8 +127,8 @@ sed -i s/bgpd=no/bgpd=yes/ ${MOUNT_DIR}/etc/frr/daemons # make sure we're ip forwarding - sed -i 's/#net.ipv4.ip_forward=1/net.ipv4.ip_forward=1/' ${MOUNT_DIR}/etc/sysctl.conf - sed -i 's/#net.ipv6.conf.all.forwarding=1/net.ipv6.conf.all.forwarding=1/' ${MOUNT_DIR}/etc/sysctl.conf + echo "net.ipv4.ip_forward=1" >${MOUNT_DIR}/etc/sysctl.d/00-forward-internet.conf + echo "net.ipv6.conf.all.forwarding=1" >>${MOUNT_DIR}/etc/sysctl.d/00-forward-internet.conf # Configure FRR and /etc/network/interfaces ###############################
--- End Message ---
--- Begin Message ---
- To: 1110859-done@bugs.debian.org, 1111236-done@bugs.debian.org, 1111733-done@bugs.debian.org, 1111734-done@bugs.debian.org, 1111808-done@bugs.debian.org, 1111819-done@bugs.debian.org, 1112097-done@bugs.debian.org, 1112120-done@bugs.debian.org, 1112256-done@bugs.debian.org, 1112261-done@bugs.debian.org, 1112276-done@bugs.debian.org, 1112282-done@bugs.debian.org, 1112283-done@bugs.debian.org, 1112380-done@bugs.debian.org, 1112479-done@bugs.debian.org, 1112557-done@bugs.debian.org, 1112668-done@bugs.debian.org, 1112671-done@bugs.debian.org, 1113711-done@bugs.debian.org, 1113750-done@bugs.debian.org, 1113757-done@bugs.debian.org, 1113761-done@bugs.debian.org, 1113778-done@bugs.debian.org, 1113799-done@bugs.debian.org, 1113804-done@bugs.debian.org, 1113860-done@bugs.debian.org, 1113882-done@bugs.debian.org, 1113902-done@bugs.debian.org, 1113904-done@bugs.debian.org, 1113961-done@bugs.debian.org, 1113979-done@bugs.debian.org, 1114595-done@bugs.debian.org, 1114684-done@bugs.debian.org, 1114755-done@bugs.debian.org, 1114855-done@bugs.debian.org, 1114929-done@bugs.debian.org, 1114979-done@bugs.debian.org, 1115257-done@bugs.debian.org, 1115486-done@bugs.debian.org, 1115530-done@bugs.debian.org, 1115749-done@bugs.debian.org, 1115815-done@bugs.debian.org, 1115860-done@bugs.debian.org, 1115899-done@bugs.debian.org, 1115914-done@bugs.debian.org, 1116012-done@bugs.debian.org, 1116020-done@bugs.debian.org, 1116040-done@bugs.debian.org, 1116053-done@bugs.debian.org, 1116127-done@bugs.debian.org, 1116196-done@bugs.debian.org, 1116201-done@bugs.debian.org, 1116386-done@bugs.debian.org, 1116523-done@bugs.debian.org, 1116526-done@bugs.debian.org, 1116547-done@bugs.debian.org, 1116575-done@bugs.debian.org, 1116665-done@bugs.debian.org, 1116705-done@bugs.debian.org, 1116938-done@bugs.debian.org, 1116945-done@bugs.debian.org, 1116983-done@bugs.debian.org, 1117467-done@bugs.debian.org, 1117469-done@bugs.debian.org, 1117828-done@bugs.debian.org, 1117843-done@bugs.debian.org, 1117876-done@bugs.debian.org, 1117909-done@bugs.debian.org, 1118008-done@bugs.debian.org, 1118037-done@bugs.debian.org, 1118047-done@bugs.debian.org, 1118228-done@bugs.debian.org, 1118374-done@bugs.debian.org, 1118434-done@bugs.debian.org, 1118443-done@bugs.debian.org, 1118458-done@bugs.debian.org, 1118547-done@bugs.debian.org, 1118657-done@bugs.debian.org, 1118663-done@bugs.debian.org, 1118673-done@bugs.debian.org, 1118674-done@bugs.debian.org, 1118737-done@bugs.debian.org, 1119085-done@bugs.debian.org, 1119088-done@bugs.debian.org, 1119115-done@bugs.debian.org, 1119136-done@bugs.debian.org, 1119142-done@bugs.debian.org, 1119256-done@bugs.debian.org, 1119286-done@bugs.debian.org, 1119287-done@bugs.debian.org, 1119288-done@bugs.debian.org, 1119291-done@bugs.debian.org, 1119301-done@bugs.debian.org, 1119303-done@bugs.debian.org, 1119719-done@bugs.debian.org, 1119798-done@bugs.debian.org, 1119854-done@bugs.debian.org, 1119909-done@bugs.debian.org, 1120048-done@bugs.debian.org, 1120050-done@bugs.debian.org, 1120054-done@bugs.debian.org, 1120125-done@bugs.debian.org, 1120129-done@bugs.debian.org, 1120143-done@bugs.debian.org, 1120145-done@bugs.debian.org, 1120148-done@bugs.debian.org, 1120151-done@bugs.debian.org, 1120262-done@bugs.debian.org, 1120278-done@bugs.debian.org, 1120289-done@bugs.debian.org, 1120325-done@bugs.debian.org, 1120345-done@bugs.debian.org, 1120350-done@bugs.debian.org, 1120358-done@bugs.debian.org, 1120360-done@bugs.debian.org, 1120445-done@bugs.debian.org
- Subject: Closing requests for updates included in 13.2
- From: "Adam D. Barratt" <adam@adam-barratt.org.uk>
- Date: Sat, 15 Nov 2025 11:21:45 +0000
- Message-id: <736c7150dc08501cc89945035c406eaf9688e144.camel@adam-barratt.org.uk>
Package: release.debian.org Version: 13.2 Hi, The updates referenced in each of these bugs were included in today's 13.2 trixie point release. Regards, Adam
--- End Message ---