Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package combustion for openSUSE:Factory 
checked in at 2024-07-14 08:48:44
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/combustion (Old)
 and      /work/SRC/openSUSE:Factory/.combustion.new.17339 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "combustion"

Sun Jul 14 08:48:44 2024 rev:31 rq:1187037 version:1.3+git11

Changes:
--------
--- /work/SRC/openSUSE:Factory/combustion/combustion.changes    2024-03-07 
18:28:05.810092327 +0100
+++ /work/SRC/openSUSE:Factory/.combustion.new.17339/combustion.changes 
2024-07-14 08:48:56.305013506 +0200
@@ -1,0 +2,8 @@
+Fri Jul 12 09:35:20 UTC 2024 - Fabian Vogt <[email protected]>
+
+- Switch _service to use mode="manual"
+- Update to version 1.3+git11:
+  * 30firstboot: Leave IPL DASD enablement to s390-tools (jsc#PED-8130)
+  * Wait for tee to finish in example scripts (bsc#1222411)
+
+-------------------------------------------------------------------

Old:
----
  combustion-1.3+git9.obscpio

New:
----
  combustion-1.3+git11.obscpio

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

Other differences:
------------------
++++++ combustion.spec ++++++
--- /var/tmp/diff_new_pack.gLQkyF/_old  2024-07-14 08:48:56.929036330 +0200
+++ /var/tmp/diff_new_pack.gLQkyF/_new  2024-07-14 08:48:56.933036476 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           combustion
-Version:        1.3+git9
+Version:        1.3+git11
 Release:        0
 Summary:        System for initial configuration of appliances
 License:        GPL-2.0-or-later

++++++ _service ++++++
--- /var/tmp/diff_new_pack.gLQkyF/_old  2024-07-14 08:48:56.961037501 +0200
+++ /var/tmp/diff_new_pack.gLQkyF/_new  2024-07-14 08:48:56.961037501 +0200
@@ -1,12 +1,12 @@
 <services>
-  <service mode="disabled" name="obs_scm">
+  <service mode="manual" name="obs_scm">
     <param name="url">https://github.com/openSUSE/combustion.git</param>
     <param name="scm">git</param>
     <param name="changesgenerate">enable</param>
     <param name="versionformat">@PARENT_TAG@+git@TAG_OFFSET@</param>
     <param name="versionrewrite-pattern">v(.*?)(\+git0)?$</param>
   </service>
-  <service mode="disabled" name="set_version" />
+  <service mode="manual" name="set_version" />
   <service mode="buildtime" name="tar" />
   <service mode="buildtime" name="recompress">
     <param name="file">*.tar</param>

++++++ _servicedata ++++++
--- /var/tmp/diff_new_pack.gLQkyF/_old  2024-07-14 08:48:56.985038379 +0200
+++ /var/tmp/diff_new_pack.gLQkyF/_new  2024-07-14 08:48:56.989038525 +0200
@@ -1,6 +1,6 @@
 <servicedata>
 <service name="tar_scm">
                 <param 
name="url">https://github.com/openSUSE/combustion.git</param>
-              <param 
name="changesrevision">5ff41dbc3735817ffdacb8d6b45e595cc3adba7d</param></service></servicedata>
+              <param 
name="changesrevision">0a589ce0494fe7bffa00b99d8a314f9a70c96d8c</param></service></servicedata>
 (No newline at EOF)
 

++++++ combustion-1.3+git9.obscpio -> combustion-1.3+git11.obscpio ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/combustion-1.3+git9/30firstboot/firstboot-detect 
new/combustion-1.3+git11/30firstboot/firstboot-detect
--- old/combustion-1.3+git9/30firstboot/firstboot-detect        2024-03-06 
13:48:26.000000000 +0100
+++ new/combustion-1.3+git11/30firstboot/firstboot-detect       2024-07-12 
10:24:02.000000000 +0200
@@ -22,7 +22,7 @@
                # On s390x, attached DASDs need to be enabled first to appear 
as block devices.
                # On the first boot this is necessary to probe for 
configuration sources.
                echo "Trying to enable all available DASDs"
-               chzdev dasd --offline --existing --enable --active || echo 
"Couldn't enable all devices, trying to continue anyway." >&2
+               chzdev dasd --offline --existing --enable --active || echo 
"Couldn't enable all DASD devices, trying to continue anyway." >&2
        fi
        # Make initrd.target require firstboot.target
        systemctl enable --quiet firstboot.target
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/combustion-1.3+git9/30firstboot/module-setup.sh 
new/combustion-1.3+git11/30firstboot/module-setup.sh
--- old/combustion-1.3+git9/30firstboot/module-setup.sh 2024-03-06 
13:48:26.000000000 +0100
+++ new/combustion-1.3+git11/30firstboot/module-setup.sh        2024-07-12 
10:24:02.000000000 +0200
@@ -17,12 +17,6 @@
        if [ "${DRACUT_ARCH:-$(uname -m)}" = "s390x" ]; then
                # Special behaviour on s390x: On the first boot, enable all 
DASDs
                inst_multiple chzdev
-
-               # On all boots, enable at least the IPL dev.
-               # Once the initrd was rebuilt without this module, it should 
contain
-               # an appropriate rd.dasd parameter instead to trigger enabling.
-               mkdir -p "${initdir}/etc/modprobe.d"
-               echo "options dasd_mod dasd=ipldev" > 
"${initdir}/etc/modprobe.d/dasd-ipldev.conf"
        fi
 
        # Work around https://github.com/systemd/systemd/pull/28718
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/combustion-1.3+git9/README.md 
new/combustion-1.3+git11/README.md
--- old/combustion-1.3+git9/README.md   2024-03-06 13:48:26.000000000 +0100
+++ new/combustion-1.3+git11/README.md  2024-07-12 10:24:02.000000000 +0200
@@ -98,6 +98,8 @@
 zypper --non-interactive install vim-small
 # Leave a marker
 echo "Configured with combustion" > /etc/issue.d/combustion
+# Close outputs and wait for tee to finish.
+exec 1>&- 2>&-; wait;
 ```
 
 Perform modifications in the initrd environment
@@ -144,6 +146,8 @@
 curl example.com
 # Leave a marker
 echo "Configured with combustion" > /etc/issue.d/combustion
+# Close outputs and wait for tee to finish.
+exec 1>&- 2>&-; wait;
 ```
 
 How it works

++++++ combustion.obsinfo ++++++
--- /var/tmp/diff_new_pack.gLQkyF/_old  2024-07-14 08:48:57.085042036 +0200
+++ /var/tmp/diff_new_pack.gLQkyF/_new  2024-07-14 08:48:57.089042183 +0200
@@ -1,5 +1,5 @@
 name: combustion
-version: 1.3+git9
-mtime: 1709729306
-commit: 5ff41dbc3735817ffdacb8d6b45e595cc3adba7d
+version: 1.3+git11
+mtime: 1720772642
+commit: 0a589ce0494fe7bffa00b99d8a314f9a70c96d8c
 

Reply via email to