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 2024-03-17 22:14:57
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/cloud-netconfig (Old)
 and      /work/SRC/openSUSE:Factory/.cloud-netconfig.new.1905 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "cloud-netconfig"

Sun Mar 17 22:14:57 2024 rev:19 rq:1158461 version:1.13

Changes:
--------
--- /work/SRC/openSUSE:Factory/cloud-netconfig/cloud-netconfig.changes  
2024-03-01 23:39:48.402574388 +0100
+++ 
/work/SRC/openSUSE:Factory/.cloud-netconfig.new.1905/cloud-netconfig.changes    
    2024-03-17 22:15:17.830833566 +0100
@@ -1,0 +2,12 @@
+Sat Mar  9 11:22:32 UTC 2024 - Robert Schweikert <rjsch...@suse.com>
+
+- Add version settings to Provides/Obsoletes
+
+-------------------------------------------------------------------
+Sat Mar  9 02:53:11 UTC 2024 - Robert Schweikert <rjsch...@suse.com>
+
+- Update to version 1.12 (bsc#1221202)
+  + If token access succeeds using IPv4 do not use the IPv6 endpoint
+    only use the IPv6 IMDS endpoint if IPv4 access fails.
+
+-------------------------------------------------------------------
@@ -136 +148 @@
-Tue May 29 19:16:31 UTC 2018 - jgleiss...@suse.com
+Fri Jun  1 06:51:37 UTC 2018 - jgleiss...@suse.com
@@ -139 +151 @@
-  + no persistent names in Azure (bsc#1094271)
+  + no persistent interface names in Azure (bsc#1095485)

Old:
----
  cloud-netconfig-1.11.tar.bz2

New:
----
  cloud-netconfig-1.13.tar.bz2

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

Other differences:
------------------
++++++ cloud-netconfig.spec ++++++
--- /var/tmp/diff_new_pack.phYum3/_old  2024-03-17 22:15:18.402854490 +0100
+++ /var/tmp/diff_new_pack.phYum3/_new  2024-03-17 22:15:18.402854490 +0100
@@ -1,5 +1,5 @@
 #
-# spec file
+# spec file for package cloud-netconfig
 #
 # Copyright (c) 2024 SUSE LLC
 #
@@ -48,7 +48,7 @@
 %endif
 
 Name:           %{base_name}%{flavor_suffix}
-Version:        1.11
+Version:        1.13
 Release:        0
 License:        GPL-3.0-or-later
 Summary:        Network configuration scripts for %{csp_string}
@@ -63,8 +63,8 @@
 Requires:       curl
 Requires:       udev
 Provides:       cloud-netconfig
-Provides:       cloud-netconfig-nm
-Obsoletes:      cloud-netconfig-nm
+Provides:       cloud-netconfig-nm = %{version}
+Obsoletes:      cloud-netconfig-nm < %{version}
 Conflicts:      cloud-netconfig
 %if 0%{?suse_version} == 1315
 %{?systemd_requires}

++++++ cloud-netconfig-1.11.tar.bz2 -> cloud-netconfig-1.13.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cloud-netconfig-1.11/VERSION 
new/cloud-netconfig-1.13/VERSION
--- old/cloud-netconfig-1.11/VERSION    2024-02-08 10:49:37.345858048 +0100
+++ new/cloud-netconfig-1.13/VERSION    2024-03-09 12:18:49.348817703 +0100
@@ -1 +1 @@
-1.11
+1.13
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cloud-netconfig-1.11/cloud-netconfig.spec 
new/cloud-netconfig-1.13/cloud-netconfig.spec
--- old/cloud-netconfig-1.11/cloud-netconfig.spec       2024-02-08 
11:11:25.225825334 +0100
+++ new/cloud-netconfig-1.13/cloud-netconfig.spec       2024-03-09 
12:18:37.916876902 +0100
@@ -48,7 +48,7 @@
 %endif
 
 Name:           %{base_name}%{flavor_suffix}
-Version:        1.11
+Version:        1.13
 Release:        0
 License:        GPL-3.0-or-later
 Summary:        Network configuration scripts for %{csp_string}
@@ -59,9 +59,12 @@
 BuildArch:      noarch
 BuildRequires:  systemd-rpm-macros
 BuildRequires:  pkgconfig(udev)
+BuildRequires:  NetworkManager
 Requires:       curl
 Requires:       udev
 Provides:       cloud-netconfig
+Provides:       cloud-netconfig-nm = %{version}
+Obsoletes:      cloud-netconfig-nm < %{version}
 Conflicts:      cloud-netconfig
 %if 0%{?suse_version} == 1315
 %{?systemd_requires}
@@ -71,8 +74,10 @@
 %define _scriptdir %{_libexecdir}/cloud-netconfig
 %if 0%{?suse_version} > 1550
 %define _netconfigdir %{_libexecdir}/netconfig.d
+%define _dispatcherdir /usr/lib/NetworkManager/dispatcher.d
 %else
 %define _netconfigdir %{_sysconfdir}/netconfig.d
+%define _dispatcherdir %{_sysconfdir}/NetworkManager/dispatcher.d
 %endif
 
 %description -n %{base_name}%{flavor_suffix}
@@ -94,7 +99,7 @@
   UDEVRULESDIR=%{_udevrulesdir} \
   UNITDIR=%{_unitdir} \
   NETCONFIGDIR=%{_netconfigdir} \
-  NMDISPATCHDIR=/usr/lib/NetworkManager/dispatcher.d
+  NMDISPATCHDIR=%{_dispatcherdir}
 
 # Disable persistent net generator from udev-persistent-ifnames as
 # it does not work for xen interfaces. This will likely produce a warning.
@@ -132,7 +137,7 @@
 %endif
 %{_udevrulesdir}/*
 %{_unitdir}/*
-/usr/lib/NetworkManager
+%{_dispatcherdir}
 %doc README.md
 %license LICENSE
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cloud-netconfig-1.11/ec2/functions.cloud-netconfig 
new/cloud-netconfig-1.13/ec2/functions.cloud-netconfig
--- old/cloud-netconfig-1.11/ec2/functions.cloud-netconfig      2024-02-08 
10:29:01.562934174 +0100
+++ new/cloud-netconfig-1.13/ec2/functions.cloud-netconfig      2024-03-09 
03:40:02.899323156 +0100
@@ -33,9 +33,9 @@
       TOKEN=$($CURL -X PUT "http://169.254.169.254/latest/api/token"; \
               -H "X-aws-ec2-metadata-token-ttl-seconds: $TOKEN_TTL" 
2>/dev/null)
       # no token, try IPv6
-      test -z "$TOKEN" && TOKEN=$($CURL -X PUT 
"http://[fd00:ec2::254]/latest/api/token"; \
+      if [ -z "$TOKEN" ]; then
+          TOKEN=$($CURL -X PUT "http://[fd00:ec2::254]/latest/api/token"; \
               -H "X-aws-ec2-metadata-token-ttl-seconds: $TOKEN_TTL" 
2>/dev/null)
-      if [ -n "$TOKEN" ]; then
           METADATA_URL_BASE=${METADATA_URL_BASE6}
           
METADATA_URL_IFACE="${METADATA_URL_BASE}/meta-data/network/interfaces/macs"
       fi

Reply via email to