Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package installation-images for
openSUSE:Factory checked in at 2021-09-04 22:32:12
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/installation-images (Old)
and /work/SRC/openSUSE:Factory/.installation-images.new.1899 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "installation-images"
Sat Sep 4 22:32:12 2021 rev:142 rq:915770 version:17.14
Changes:
--------
--- /work/SRC/openSUSE:Factory/installation-images/installation-images.changes
2021-08-27 21:43:44.761959517 +0200
+++
/work/SRC/openSUSE:Factory/.installation-images.new.1899/installation-images.changes
2021-09-04 22:32:31.899927010 +0200
@@ -1,0 +2,9 @@
+Thu Sep 2 13:12:02 UTC 2021 - [email protected]
+
+- merge gh#openSUSE/installation-images#521
+- Fix conditions for removing zram devices
+- Improvements from code review
+- Fix conditions for turning on/off zram (bcs#1187434)
+- 17.14
+
+--------------------------------------------------------------------
Old:
----
installation-images-17.13.tar.xz
New:
----
installation-images-17.14.tar.xz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ installation-images.spec ++++++
--- /var/tmp/diff_new_pack.5JReYC/_old 2021-09-04 22:32:33.127928635 +0200
+++ /var/tmp/diff_new_pack.5JReYC/_new 2021-09-04 22:32:33.131928640 +0200
@@ -674,7 +674,7 @@
Summary: Installation Image Files for %theme
License: GPL-2.0-or-later
Group: Metapackages
-Version: 17.13
+Version: 17.14
Release: 0
Provides: installation-images = %version-%release
Conflicts: otherproviders(installation-images)
++++++ installation-images-17.13.tar.xz -> installation-images-17.14.tar.xz
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/installation-images-17.13/VERSION
new/installation-images-17.14/VERSION
--- old/installation-images-17.13/VERSION 2021-08-25 15:26:27.000000000
+0200
+++ new/installation-images-17.14/VERSION 2021-09-02 15:12:02.000000000
+0200
@@ -1 +1 @@
-17.13
+17.14
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/installation-images-17.13/changelog
new/installation-images-17.14/changelog
--- old/installation-images-17.13/changelog 2021-08-25 15:26:27.000000000
+0200
+++ new/installation-images-17.14/changelog 2021-09-02 15:12:02.000000000
+0200
@@ -1,3 +1,9 @@
+2021-09-02: 17.14
+ - merge gh#openSUSE/installation-images#521
+ - Fix conditions for removing zram devices
+ - Improvements from code review
+ - Fix conditions for turning on/off zram (bcs#1187434)
+
2021-08-25: 17.13
- merge gh#openSUSE/installation-images#519
- ensure /usr/share/pci.ids exists (bsc#1189767)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/installation-images-17.13/data/root/etc/inst_setup
new/installation-images-17.14/data/root/etc/inst_setup
--- old/installation-images-17.13/data/root/etc/inst_setup 2021-08-25
15:26:27.000000000 +0200
+++ new/installation-images-17.14/data/root/etc/inst_setup 2021-09-02
15:12:02.000000000 +0200
@@ -181,7 +181,7 @@
modprobe zram
zram_dev_index=`cat /sys/class/zram-control/hot_add`
zram_swap_dev=/dev/zram$zram_dev_index
- if [ -b $zram_swap_dev ] ; then
+ if [ -b "$zram_swap_dev" ] ; then
echo zstd > /sys/block/zram$zram_dev_index/comp_algorithm
echo "$zram_swap" > /sys/block/zram$zram_dev_index/disksize
mkswap $zram_swap_dev >/dev/null
@@ -192,7 +192,7 @@
}
zram_swap_off() {
- if [ -b $zram_swap_dev ] ; then
+ if [ -b "$zram_swap_dev" ] ; then
swapoff $zram_swap_dev
echo $zram_dev_index > /sys/class/zram-control/hot_remove
fi