Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package os-autoinst for openSUSE:Factory checked in at 2025-09-23 16:07:47 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/os-autoinst (Old) and /work/SRC/openSUSE:Factory/.os-autoinst.new.27445 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "os-autoinst" Tue Sep 23 16:07:47 2025 rev:539 rq:1306653 version:5.1758611445.fc0a714 Changes: -------- --- /work/SRC/openSUSE:Factory/os-autoinst/os-autoinst.changes 2025-09-20 22:04:23.039434960 +0200 +++ /work/SRC/openSUSE:Factory/.os-autoinst.new.27445/os-autoinst.changes 2025-09-23 16:08:25.466458832 +0200 @@ -1,0 +2,10 @@ +Tue Sep 23 07:12:30 UTC 2025 - [email protected] + +- Update to version 5.1758611445.fc0a714: + * os-autoinst-setup-multi-machine: Only call zypper when necessary + * os-autoinst-setup-multi-machine: Improve network interface check + * Document max_interval (and quiet) in (assert_)script_run + * testapi: allow passing max_interval through (assert_)script_run + * t/consoles-s3270.t: fix with IPC::Run 20250809.0 + +------------------------------------------------------------------- Old: ---- os-autoinst-5.1758276418.9dda31e.obscpio New: ---- os-autoinst-5.1758611445.fc0a714.obscpio ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ os-autoinst-devel-test.spec ++++++ --- /var/tmp/diff_new_pack.NyTCll/_old 2025-09-23 16:08:26.274493222 +0200 +++ /var/tmp/diff_new_pack.NyTCll/_new 2025-09-23 16:08:26.274493222 +0200 @@ -18,7 +18,7 @@ %define short_name os-autoinst-devel Name: %{short_name}-test -Version: 5.1758276418.9dda31e +Version: 5.1758611445.fc0a714 Release: 0 Summary: Test package for %{short_name} License: GPL-2.0-or-later ++++++ os-autoinst-openvswitch-test.spec ++++++ --- /var/tmp/diff_new_pack.NyTCll/_old 2025-09-23 16:08:26.302494414 +0200 +++ /var/tmp/diff_new_pack.NyTCll/_new 2025-09-23 16:08:26.302494414 +0200 @@ -19,7 +19,7 @@ %define name_ext -test %define short_name os-autoinst-openvswitch Name: %{short_name}%{?name_ext} -Version: 5.1758276418.9dda31e +Version: 5.1758611445.fc0a714 Release: 0 Summary: test package for %{short_name} License: GPL-2.0-or-later ++++++ os-autoinst-test.spec ++++++ --- /var/tmp/diff_new_pack.NyTCll/_old 2025-09-23 16:08:26.330495606 +0200 +++ /var/tmp/diff_new_pack.NyTCll/_new 2025-09-23 16:08:26.330495606 +0200 @@ -19,7 +19,7 @@ %define name_ext -test %define short_name os-autoinst Name: %{short_name}%{?name_ext} -Version: 5.1758276418.9dda31e +Version: 5.1758611445.fc0a714 Release: 0 Summary: test package for os-autoinst License: GPL-2.0-or-later ++++++ os-autoinst.spec ++++++ --- /var/tmp/diff_new_pack.NyTCll/_old 2025-09-23 16:08:26.362496968 +0200 +++ /var/tmp/diff_new_pack.NyTCll/_new 2025-09-23 16:08:26.362496968 +0200 @@ -17,7 +17,7 @@ Name: os-autoinst -Version: 5.1758276418.9dda31e +Version: 5.1758611445.fc0a714 Release: 0 Summary: OS-level test automation License: GPL-2.0-or-later ++++++ os-autoinst-5.1758276418.9dda31e.obscpio -> os-autoinst-5.1758611445.fc0a714.obscpio ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/os-autoinst-5.1758276418.9dda31e/script/os-autoinst-setup-multi-machine new/os-autoinst-5.1758611445.fc0a714/script/os-autoinst-setup-multi-machine --- old/os-autoinst-5.1758276418.9dda31e/script/os-autoinst-setup-multi-machine 2025-09-19 12:06:58.000000000 +0200 +++ new/os-autoinst-5.1758611445.fc0a714/script/os-autoinst-setup-multi-machine 2025-09-23 09:10:45.000000000 +0200 @@ -2,8 +2,7 @@ set -euo pipefail instances="${instances:-20}" bridge="${bridge:-"br1"}" -default_ethernet=$(ip -json route show default | jq -r '.[]|.dev') -ethernet="${ethernet:-"$default_ethernet"}" +ethernet="${ethernet:-""}" zone="${zone:-"trusted"}" # Set the MTU of the bridge interface according to https://docs.openvswitch.org/en/latest/faq/issues @@ -41,7 +40,8 @@ install_packages() { command -v retry > /dev/null || zypper -n in retry - retry -e -s 30 -r 7 -- sh -c "zypper ref && zypper -n in openvswitch os-autoinst-openvswitch firewalld libcap-progs" + pkgs=(openvswitch os-autoinst-openvswitch firewalld libcap-progs) + rpm -q ${pkgs[*]} > /dev/null || retry -e -s 30 -r 7 -- sh -c "zypper ref && zypper -n in ${pkgs[*]}" } configure_firewall() { @@ -145,6 +145,13 @@ systemctl restart openvswitch os-autoinst-openvswitch } +determine_ethernet_interface() { + if [[ -n "$ethernet" ]]; then + return + fi + ethernet=$(ip -json route show default | jq -r '.[]|.dev') +} + main() { network=$(basename -s.service "$(readlink /etc/systemd/system/network.service)") if [[ -z "${network}" ]]; then @@ -157,6 +164,7 @@ } ensure_ip_forwarding install_packages + determine_ethernet_interface configure_firewall systemctl enable --now openvswitch case "$network" in ++++++ os-autoinst.obsinfo ++++++ --- /var/tmp/diff_new_pack.NyTCll/_old 2025-09-23 16:08:28.158573411 +0200 +++ /var/tmp/diff_new_pack.NyTCll/_new 2025-09-23 16:08:28.162573581 +0200 @@ -1,5 +1,5 @@ name: os-autoinst -version: 5.1758276418.9dda31e -mtime: 1758276418 -commit: 9dda31e60564c98016e24548445a1bbdf4af2efa +version: 5.1758611445.fc0a714 +mtime: 1758611445 +commit: fc0a714c43d6b9f3cfe5c94510e7dfb6851f438d
