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 2026-02-27 17:04:45
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/os-autoinst (Old)
 and      /work/SRC/openSUSE:Factory/.os-autoinst.new.29461 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "os-autoinst"

Fri Feb 27 17:04:45 2026 rev:569 rq:1335314 version:5.1772097392.f4e2912

Changes:
--------
--- /work/SRC/openSUSE:Factory/os-autoinst/os-autoinst.changes  2026-02-25 
21:09:19.247071429 +0100
+++ /work/SRC/openSUSE:Factory/.os-autoinst.new.29461/os-autoinst.changes       
2026-02-27 17:10:15.524984811 +0100
@@ -1,0 +2,10 @@
+Thu Feb 26 17:45:58 UTC 2026 - [email protected]
+
+- Update to version 5.1772097392.f4e2912:
+  * fix: Update gre_tunnel_preup script to support NetworkManager
+  * build(Makefile): add top-level help target
+  * test: implement conventional commits check with gitlint
+  * fix: Fix wrong uses of "checkout" that should be "check out"
+  * git subrepo pull (merge) --force external/os-autoinst-common
+
+-------------------------------------------------------------------

Old:
----
  os-autoinst-5.1771958644.63a1790.obscpio

New:
----
  os-autoinst-5.1772097392.f4e2912.obscpio

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ os-autoinst-devel-test.spec ++++++
--- /var/tmp/diff_new_pack.EDoUmI/_old  2026-02-27 17:10:17.265056986 +0100
+++ /var/tmp/diff_new_pack.EDoUmI/_new  2026-02-27 17:10:17.269057152 +0100
@@ -18,7 +18,7 @@
 
 %define         short_name os-autoinst-devel
 Name:           %{short_name}-test
-Version:        5.1771958644.63a1790
+Version:        5.1772097392.f4e2912
 Release:        0
 Summary:        Test package for %{short_name}
 License:        GPL-2.0-or-later

++++++ os-autoinst-openvswitch-test.spec ++++++
--- /var/tmp/diff_new_pack.EDoUmI/_old  2026-02-27 17:10:17.313058977 +0100
+++ /var/tmp/diff_new_pack.EDoUmI/_new  2026-02-27 17:10:17.313058977 +0100
@@ -19,7 +19,7 @@
 %define name_ext -test
 %define         short_name os-autoinst-openvswitch
 Name:           %{short_name}%{?name_ext}
-Version:        5.1771958644.63a1790
+Version:        5.1772097392.f4e2912
 Release:        0
 Summary:        test package for %{short_name}
 License:        GPL-2.0-or-later

++++++ os-autoinst-test.spec ++++++
--- /var/tmp/diff_new_pack.EDoUmI/_old  2026-02-27 17:10:17.349060471 +0100
+++ /var/tmp/diff_new_pack.EDoUmI/_new  2026-02-27 17:10:17.353060637 +0100
@@ -19,7 +19,7 @@
 %define name_ext -test
 %define         short_name os-autoinst
 Name:           %{short_name}%{?name_ext}
-Version:        5.1771958644.63a1790
+Version:        5.1772097392.f4e2912
 Release:        0
 Summary:        test package for os-autoinst
 License:        GPL-2.0-or-later

++++++ os-autoinst.spec ++++++
--- /var/tmp/diff_new_pack.EDoUmI/_old  2026-02-27 17:10:17.421063457 +0100
+++ /var/tmp/diff_new_pack.EDoUmI/_new  2026-02-27 17:10:17.425063623 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           os-autoinst
-Version:        5.1771958644.63a1790
+Version:        5.1772097392.f4e2912
 Release:        0
 Summary:        OS-level test automation
 License:        GPL-2.0-or-later

++++++ os-autoinst-5.1771958644.63a1790.obscpio -> 
os-autoinst-5.1772097392.f4e2912.obscpio ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/os-autoinst-5.1771958644.63a1790/script/os-autoinst-setup-multi-machine 
new/os-autoinst-5.1772097392.f4e2912/script/os-autoinst-setup-multi-machine
--- old/os-autoinst-5.1771958644.63a1790/script/os-autoinst-setup-multi-machine 
2026-02-24 19:44:04.000000000 +0100
+++ new/os-autoinst-5.1772097392.f4e2912/script/os-autoinst-setup-multi-machine 
2026-02-26 10:16:32.000000000 +0100
@@ -121,11 +121,19 @@
     local location=$1
     cat > "$location" << EOF
 #!/bin/sh
+OVS_CMD=\$(command -v ovs-vsctl)
+if [ -z "\$OVS_CMD" ]; then
+    logger "Error: ovs-vsctl not found. Skipping script \$0"
+    exit 0 # Exit 0 to avoid breaking NetworkManager's flow
+fi
+TARGET_BRIDGE=\$("\$OVS_CMD" list-br)
 action="\$1"
 bridge="\$2"
-ovs-vsctl set bridge \$bridge rstp_enable=true
-# TODO add entries according to your network topology
-#ovs-vsctl --may-exist add-port \$bridge gre1 -- set interface gre1 type=gre 
options:remote_ip=<IP address of other host>
+if [ "\$bridge" = "\$TARGET_BRIDGE" ] && ([ "\$action" = "pre-up" ] || [ 
"\$action" = "up" ]); then
+    ovs-vsctl set bridge \$bridge rstp_enable=true
+    # TODO add entries according to your network topology
+    #ovs-vsctl --may-exist add-port \$bridge gre1 -- set interface gre1 
type=gre options:remote_ip=<IP address of other host>
+fi
 EOF
     chmod +x "$location"
 }

++++++ os-autoinst.obsinfo ++++++
--- /var/tmp/diff_new_pack.EDoUmI/_old  2026-02-27 17:10:25.433395793 +0100
+++ /var/tmp/diff_new_pack.EDoUmI/_new  2026-02-27 17:10:25.457396788 +0100
@@ -1,5 +1,5 @@
 name: os-autoinst
-version: 5.1771958644.63a1790
-mtime: 1771958644
-commit: 63a17900eefbb2d697a80f8b4d17af2a2b4e57e1
+version: 5.1772097392.f4e2912
+mtime: 1772097392
+commit: f4e2912b3e2c695c12ba672baafbdc914f19cfdd
 

Reply via email to