Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package google-guest-agent for openSUSE:Factory checked in at 2026-08-14 22:07:00 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/google-guest-agent (Old) and /work/SRC/openSUSE:Factory/.google-guest-agent.new.1258 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "google-guest-agent" Fri Aug 14 22:07:00 2026 rev:68 rq:1371037 version:20260803.00 Changes: -------- --- /work/SRC/openSUSE:Factory/google-guest-agent/google-guest-agent.changes 2026-08-06 16:28:30.505624404 +0200 +++ /work/SRC/openSUSE:Factory/.google-guest-agent.new.1258/google-guest-agent.changes 2026-08-14 22:07:25.942990888 +0200 @@ -1,0 +2,6 @@ +Thu Aug 6 11:10:08 UTC 2026 - Robert Schweikert <[email protected]> + +- Add guest-agent-micro6.patch (bsc#1253357) + + Fix oslogin for Micro 6+ + +------------------------------------------------------------------- New: ---- guest-agent-micro6.patch ----------(New B)---------- New: - Add guest-agent-micro6.patch (bsc#1253357) + Fix oslogin for Micro 6+ ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ google-guest-agent.spec ++++++ --- /var/tmp/diff_new_pack.KjMEco/_old 2026-08-14 22:07:26.940027189 +0200 +++ /var/tmp/diff_new_pack.KjMEco/_new 2026-08-14 22:07:26.944027335 +0200 @@ -1,6 +1,7 @@ # # spec file for package google-guest-agent # +# Copyright (c) 2026 SUSE LLC # Copyright (c) 2026 SUSE LLC and contributors # # All modifications and additions to the file contributed by third parties @@ -33,6 +34,8 @@ Patch1: CVE-2026-39821.patch # PATCH-FIX-UPSTREAM - golang.org/x/text/unicode/norm: infinite loop on truncated/invalid UTF-8 input Patch2: CVE-2026-56852.patch +# PATCH-FIX-UPSTREAM - https://github.com/GoogleCloudPlatform/guest-agent/pull/628 +Patch3: guest-agent-micro6.patch BuildRequires: golang(API) = 1.26 Requires: google-guest-configs Requires: google-guest-oslogin >= 20231003 @@ -52,6 +55,7 @@ pushd vendor/golang.org/x/text %patch -P 2 -p1 popd +%patch -P3 %build %ifnarch ppc64 ++++++ guest-agent-micro6.patch ++++++ --- google_guest_agent/oslogin.go.orig +++ google_guest_agent/oslogin.go @@ -141,7 +141,8 @@ func (o *osloginMgr) Disabled(ctx contex func setupSles16OSLoginDirs() error { isSles16 := strings.Contains(osInfo.OS, "sles") || strings.Contains(osInfo.OS, "opensuse") - if !isSles16 || osInfo.Version.Major != 16 { + isSLMicro := strings.Contains(osInfo.OS, "sl-micro") + if !((isSles16 && osInfo.Version.Major == 16) || isSLMicro) { logger.Infof("Skipping OSLogin SLES 16 specific setup on %q %d", osInfo.OS, osInfo.Version.Major) return nil }
