Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package cloud-netconfig for openSUSE:Factory
checked in at 2025-12-01 11:15:23
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/cloud-netconfig (Old)
and /work/SRC/openSUSE:Factory/.cloud-netconfig.new.14147 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "cloud-netconfig"
Mon Dec 1 11:15:23 2025 rev:22 rq:1320707 version:1.16
Changes:
--------
--- /work/SRC/openSUSE:Factory/cloud-netconfig/cloud-netconfig.changes
2025-05-30 17:20:16.206621388 +0200
+++
/work/SRC/openSUSE:Factory/.cloud-netconfig.new.14147/cloud-netconfig.changes
2025-12-01 11:16:11.373784372 +0100
@@ -1,0 +2,7 @@
+Wed Nov 12 13:36:32 UTC 2025 - Joachim Gleissner <[email protected]>
+
+- Update to version 1.16
+ + Fix query of default CLOUD_NETCONFIG_MANAGE (bsc#1253223
+ + Fix variable names in the README
+
+-------------------------------------------------------------------
Old:
----
cloud-netconfig-1.15.tar.bz2
New:
----
cloud-netconfig-1.16.tar.bz2
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ cloud-netconfig.spec ++++++
--- /var/tmp/diff_new_pack.tKpqtM/_old 2025-12-01 11:16:12.057813174 +0100
+++ /var/tmp/diff_new_pack.tKpqtM/_new 2025-12-01 11:16:12.057813174 +0100
@@ -1,7 +1,7 @@
#
# spec file for package cloud-netconfig
#
-# Copyright (c) 2025 SUSE LLC
+# Copyright (c) 2025 SUSE LLC and contributors
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -48,7 +48,7 @@
%endif
Name: %{base_name}%{flavor_suffix}
-Version: 1.15
+Version: 1.16
Release: 0
License: GPL-3.0-or-later
Summary: Network configuration scripts for %{csp_string}
++++++ cloud-netconfig-1.15.tar.bz2 -> cloud-netconfig-1.16.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/cloud-netconfig-1.15/README.md
new/cloud-netconfig-1.16/README.md
--- old/cloud-netconfig-1.15/README.md 2023-08-29 14:49:22.651056378 +0200
+++ new/cloud-netconfig-1.16/README.md 2025-11-12 16:04:53.237451437 +0100
@@ -11,7 +11,7 @@
If you are installing from source, run as root `make install-ec2`, `make
install-azure`, or `make install-gce` depending on your platform. Then reload
the udev rules by running `udevadm control -R`. Afterwards add
-**cloud-netconfig** to the variable **NETCONFIG__MODULES__ORDER** in
+**cloud-netconfig** to the variable **NETCONFIG_MODULES_ORDER** in
`/etc/sysconfig/network/config` and restart networking (`systemctl restart
wicked.service` on SUSE Linux Enterprise Server or openSUSE distributions). On
EC2 and Azure you may want to enable the systemd timer too (see below for
@@ -82,8 +82,8 @@
that it will not overwrite existing interface configurations. This allows to
use specific interface configurations. **cloud-netconfig** will still set up
secondary IP addresses and routing policies. If you do not want that, set the
-variable **CLOUD__NETCONFIG__MANAGE** to **no** in the `ifcfg` file in
+variable **CLOUD_NETCONFIG_MANAGE** to **no** in the `ifcfg` file in
`/etc/sysconfig/network` to disable it for the associated interface. You can
-also change the default value of **CLOUD__NETCONFIG__MANAGE** in
+also change the default value of **CLOUD_NETCONFIG_MANAGE** in
`/etc/default/cloud-netconfig`. The default applies to newly created `ifcfg`
files, not for existing ones.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/cloud-netconfig-1.15/VERSION
new/cloud-netconfig-1.16/VERSION
--- old/cloud-netconfig-1.15/VERSION 2025-05-14 16:19:55.128292615 +0200
+++ new/cloud-netconfig-1.16/VERSION 2025-11-12 16:04:53.237451437 +0100
@@ -1 +1 @@
-1.15
+1.16
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/cloud-netconfig-1.15/cloud-netconfig.spec
new/cloud-netconfig-1.16/cloud-netconfig.spec
--- old/cloud-netconfig-1.15/cloud-netconfig.spec 2025-05-14
16:19:55.128292615 +0200
+++ new/cloud-netconfig-1.16/cloud-netconfig.spec 2025-11-12
16:04:53.238451453 +0100
@@ -48,7 +48,7 @@
%endif
Name: %{base_name}%{flavor_suffix}
-Version: 1.15
+Version: 1.16
Release: 0
License: GPL-3.0-or-later
Summary: Network configuration scripts for %{csp_string}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/cloud-netconfig-1.15/common/cloud-netconfig
new/cloud-netconfig-1.16/common/cloud-netconfig
--- old/cloud-netconfig-1.15/common/cloud-netconfig 2025-05-16
15:48:18.812806442 +0200
+++ new/cloud-netconfig-1.16/common/cloud-netconfig 2025-11-12
17:09:08.568621906 +0100
@@ -642,7 +642,9 @@
get_variable "CLOUD_NETCONFIG_MANAGE" "${ifcfg}"
fi
elif [ "$netsys" == "NetworkManager" ]; then
- get_variable "CLOUD_NETCONFIG_MANAGE" /etc/default/cloud-netconfig
+ for conf in /usr/etc/default/cloud-netconfig
/etc/default/cloud-netconfig ; do
+ test -f $conf && get_variable "CLOUD_NETCONFIG_MANAGE" $conf
+ done
else
debug "Unknown network service $netsys. Not handling interface
configuration."
return