Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package kiwi-templates-Minimal for
openSUSE:Factory checked in at 2026-07-20 09:57:20
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kiwi-templates-Minimal (Old)
and /work/SRC/openSUSE:Factory/.kiwi-templates-Minimal.new.24530 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kiwi-templates-Minimal"
Mon Jul 20 09:57:20 2026 rev:40 rq:1366392 version:84.87.1
Changes:
--------
---
/work/SRC/openSUSE:Factory/kiwi-templates-Minimal/kiwi-templates-Minimal.changes
2026-06-16 18:29:29.257743970 +0200
+++
/work/SRC/openSUSE:Factory/.kiwi-templates-Minimal.new.24530/kiwi-templates-Minimal.changes
2026-07-20 09:59:55.713318382 +0200
@@ -1,0 +2,6 @@
+Fri Jul 17 11:23:37 UTC 2026 - Fabian Vogt <[email protected]>
+
+- Move snapper configuration from config.sh to disk.sh (boo#1259633)
+- Sync snapper number limits with MicroOS
+
+-------------------------------------------------------------------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
kiwi-templates-Minimal.spec: same change
++++++ config.sh ++++++
--- /var/tmp/diff_new_pack.CsR2gc/_old 2026-07-20 09:59:56.441342882 +0200
+++ /var/tmp/diff_new_pack.CsR2gc/_new 2026-07-20 09:59:56.445343018 +0200
@@ -101,23 +101,6 @@
fi
#=====================================
-# Configure snapper
-#-------------------------------------
-if [ -x /usr/bin/snapper ]; then
- echo "creating initial snapper config ..."
- # we can't call snapper here as the .snapshots subvolume
- # already exists and snapper create-config doesn't like
- # that.
- cp /etc/snapper/config-templates/default /etc/snapper/configs/root \
- || cp /usr/share/snapper/config-templates/default
/etc/snapper/configs/root
- # Change configuration to match SLES12-SP1 values
- sed -i -e '/^TIMELINE_CREATE=/s/yes/no/' /etc/snapper/configs/root
- sed -i -e '/^NUMBER_LIMIT=/s/50/10/' /etc/snapper/configs/root
-
- baseUpdateSysConfig /etc/sysconfig/snapper SNAPPER_CONFIGS root
-fi
-
-#=====================================
# Enable chrony if installed
#-------------------------------------
if [ -f /etc/chrony.conf ]; then
++++++ disk.sh ++++++
--- /var/tmp/diff_new_pack.CsR2gc/_old 2026-07-20 09:59:56.473343960 +0200
+++ /var/tmp/diff_new_pack.CsR2gc/_new 2026-07-20 09:59:56.473343960 +0200
@@ -1,9 +1,19 @@
#!/bin/bash
set -euxo pipefail
-echo "####### BOOTLOADER INSTALL (disk.sh)"
+if [ -x /usr/bin/snapper ]; then
+ echo "Adjusting snapper configuration"
+ if ! [ -f /etc/snapper/configs/root ]; then
+ echo "Snapper config missing?"
+ exit 1
+ fi
+ sed -i'' 's/^TIMELINE_CREATE=.*$/TIMELINE_CREATE="no"/g'
/etc/snapper/configs/root
+ sed -i'' 's/^NUMBER_LIMIT=.*$/NUMBER_LIMIT="2-10"/g'
/etc/snapper/configs/root
+ sed -i''
's/^NUMBER_LIMIT_IMPORTANT=.*$/NUMBER_LIMIT_IMPORTANT="4-10"/g'
/etc/snapper/configs/root
+fi
if [ -x /usr/bin/sdbootutil ]; then
+ echo "Installing bootloader using sdbootutil"
arch="$(uname -m)"
case "$arch" in
aarch64) arch=aa64 ;;
@@ -38,5 +48,3 @@
find /boot
fi
-echo "####### END BOOTLOADER INSTALL (disk.sh)"
-