Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package agama-installer for openSUSE:Factory
checked in at 2026-02-14 21:37:01
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/agama-installer (Old)
and /work/SRC/openSUSE:Factory/.agama-installer.new.1977 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "agama-installer"
Sat Feb 14 21:37:01 2026 rev:25 rq:1332499 version:19.pre.0.0
Changes:
--------
--- /work/SRC/openSUSE:Factory/agama-installer/agama-installer.changes
2026-01-30 18:20:28.544977258 +0100
+++
/work/SRC/openSUSE:Factory/.agama-installer.new.1977/agama-installer.changes
2026-02-14 21:37:48.721869776 +0100
@@ -1,0 +2,18 @@
+Tue Feb 10 07:36:57 UTC 2026 - Dominique Leuenberger <[email protected]>
+
+- Installer: configure libzypp through drop-in config snippet when
+ supported (jsc#PED-14658).
+
+-------------------------------------------------------------------
+Fri Jan 30 15:49:09 UTC 2026 - Ladislav Slezák <[email protected]>
+
+- Do display a message if "UEFI Firmware Settings" boot menu entry
+ fails (gh#agama-project/agama#3109)
+
+-------------------------------------------------------------------
+Wed Jan 28 14:26:37 UTC 2026 - Knut Anderssen <[email protected]>
+
+- Enable agama-proxy-setup service for configuring the proxy if
+ given through the kernel cmdline (gh#agama-project/agama#3069).
+
+-------------------------------------------------------------------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ config-cdroot.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/fix_bootconfig.aarch64 new/fix_bootconfig.aarch64
--- old/fix_bootconfig.aarch64 2026-01-29 11:55:42.000000000 +0100
+++ new/fix_bootconfig.aarch64 2026-02-10 11:11:02.000000000 +0100
@@ -117,7 +117,7 @@
}
menuentry "UEFI Firmware Settings" {
fwsetup --is-supported
- if [ "$?" = 0 ]; then
+ if [ "\$?" = 0 ]; then
fwsetup
else
echo "Your firmware doesn't support setup menu entry from a boot
loader"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/fix_bootconfig.x86_64 new/fix_bootconfig.x86_64
--- old/fix_bootconfig.x86_64 2026-01-29 11:55:42.000000000 +0100
+++ new/fix_bootconfig.x86_64 2026-02-10 11:11:02.000000000 +0100
@@ -126,7 +126,7 @@
}
menuentry "UEFI Firmware Settings" {
fwsetup --is-supported
- if [ "$?" = 0 ]; then
+ if [ "\$?" = 0 ]; then
fwsetup
else
echo "Your firmware doesn't support setup menu entry from a boot
loader"
++++++ config.sh ++++++
--- /var/tmp/diff_new_pack.NQMqnK/_old 2026-02-14 21:37:50.753953538 +0100
+++ /var/tmp/diff_new_pack.NQMqnK/_new 2026-02-14 21:37:50.757953703 +0100
@@ -49,8 +49,16 @@
rpm --import /usr/lib/rpm/gnupg/keys/*.asc
fi
+if [ $(rpm -q --provides libzypp | grep -q 'libzypp(econf)'; echo $?) -eq 0 ];
then
+# A new enough version of libzypp is in use which supports UAPI configuration.
Configure a drop-in conf
+cat <<EOF > /etc/zypp/zypp.conf.d/90-agama.conf
+[main]
+download.connect_timeout = 20
+EOF
+else
# decrease the libzypp timeout to 20 seconds (the default is 60 seconds)
sed -i -e
"s/^\s*#\s*download.connect_timeout\s*=\s*.*$/download.connect_timeout = 20/"
/etc/zypp/zypp.conf
+fi
# activate services
systemctl enable sshd.service
@@ -61,6 +69,7 @@
systemctl enable agama-dbus-monitor.service
systemctl enable agama-autoinstall.service
systemctl enable agama-hostname.service
+systemctl enable agama-proxy-setup.service
systemctl enable agama-certificate-issue.path
systemctl enable agama-certificate-wait.service
systemctl enable agama-cmdline-process.service
++++++ live-root.tar.xz ++++++