Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package google-guest-configs for
openSUSE:Factory checked in at 2025-08-12 17:04:16
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/google-guest-configs (Old)
and /work/SRC/openSUSE:Factory/.google-guest-configs.new.1085 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "google-guest-configs"
Tue Aug 12 17:04:16 2025 rev:34 rq:1298851 version:20250807.00
Changes:
--------
---
/work/SRC/openSUSE:Factory/google-guest-configs/google-guest-configs.changes
2025-07-11 21:33:37.921772462 +0200
+++
/work/SRC/openSUSE:Factory/.google-guest-configs.new.1085/google-guest-configs.changes
2025-08-12 17:05:46.502268719 +0200
@@ -1,0 +2,8 @@
+Mon Aug 11 13:04:13 UTC 2025 - John Paul Adrian Glaubitz
<[email protected]>
+
+- Update to version 20250807.00
+ * Merge pull request #96 from rjschwei:noDupMetaData
+ * Avoid duplicate entries for the metadata server in /etc/hosts
+- Drop ggc-no-dup-metasrv-entry.patch, merged upstream
+
+-------------------------------------------------------------------
Old:
----
ggc-no-dup-metasrv-entry.patch
google-guest-configs-20250709.00.tar.gz
New:
----
google-guest-configs-20250807.00.tar.gz
----------(Old B)----------
Old: * Avoid duplicate entries for the metadata server in /etc/hosts
- Drop ggc-no-dup-metasrv-entry.patch, merged upstream
----------(Old E)----------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ google-guest-configs.spec ++++++
--- /var/tmp/diff_new_pack.tsMum8/_old 2025-08-12 17:05:47.678317898 +0200
+++ /var/tmp/diff_new_pack.tsMum8/_new 2025-08-12 17:05:47.682318065 +0200
@@ -23,15 +23,13 @@
%define _udevdir %(pkg-config --variable udev_dir udev)
%endif
Name: google-guest-configs
-Version: 20250709.00
+Version: 20250807.00
Release: 0
Summary: Google Cloud Guest Configs
License: Apache-2.0
Group: System/Daemons
URL: https://github.com/GoogleCloudPlatform/guest-configs
Source0: %{url}/archive/%{version}/%{name}-%{version}.tar.gz
-# FIXME (https://github.com/GoogleCloudPlatform/guest-configs/pull/96)
-Patch1: ggc-no-dup-metasrv-entry.patch
BuildRequires: sysconfig
BuildRequires: sysconfig-netconfig
BuildRequires: systemd-rpm-macros
@@ -47,7 +45,6 @@
%prep
%setup -q -n guest-configs-%{version}
-%patch -P 1
%build
# Nothing to build
++++++ google-guest-configs-20250709.00.tar.gz ->
google-guest-configs-20250807.00.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/guest-configs-20250709.00/src/usr/bin/google_set_hostname
new/guest-configs-20250807.00/src/usr/bin/google_set_hostname
--- old/guest-configs-20250709.00/src/usr/bin/google_set_hostname
2025-06-28 01:38:02.000000000 +0200
+++ new/guest-configs-20250807.00/src/usr/bin/google_set_hostname
2025-07-25 22:21:56.000000000 +0200
@@ -53,7 +53,10 @@
fi
# Add an entry for reaching the metadata server in /etc/hosts.
- echo "169.254.169.254 metadata.google.internal # Added by Google" >>
/etc/hosts
+ has_metadata_entry=$(egrep '^169\.254\.169\.254' /etc/hosts)
+ if [ -z "$has_metadata_entry" ]; then
+ echo "169.254.169.254 metadata.google.internal # Added by Google" >>
/etc/hosts
+ fi
fi
# /sbin/dhclient-scripts in both ubuntu and centos have some problems for us: