Hello community,
here is the log from the commit of package read-only-root-fs for
openSUSE:Factory checked in at 2020-08-03 14:12:46
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/read-only-root-fs (Old)
and /work/SRC/openSUSE:Factory/.read-only-root-fs.new.3592 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "read-only-root-fs"
Mon Aug 3 14:12:46 2020 rev:13 rq:823736 version:1.0+git20200730.1243fd0
Changes:
--------
--- /work/SRC/openSUSE:Factory/read-only-root-fs/read-only-root-fs.changes
2020-07-26 16:17:50.944724403 +0200
+++
/work/SRC/openSUSE:Factory/.read-only-root-fs.new.3592/read-only-root-fs.changes
2020-08-03 14:13:13.764369330 +0200
@@ -1,0 +2,7 @@
+Thu Jul 30 17:50:08 UTC 2020 - [email protected]
+
+- Update to version 1.0+git20200730.1243fd0:
+ * Add comment about the mounting of /root in the initrd
+ * Better check for already existing /etc overlay [boo#1174733]
+
+-------------------------------------------------------------------
Old:
----
read-only-root-fs-1.0+git20200121.5ed8d15.tar.xz
New:
----
read-only-root-fs-1.0+git20200730.1243fd0.tar.xz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ read-only-root-fs.spec ++++++
--- /var/tmp/diff_new_pack.sYJjgI/_old 2020-08-03 14:13:18.004373582 +0200
+++ /var/tmp/diff_new_pack.sYJjgI/_new 2020-08-03 14:13:18.008373586 +0200
@@ -17,7 +17,7 @@
Name: read-only-root-fs
-Version: 1.0+git20200121.5ed8d15
+Version: 1.0+git20200730.1243fd0
Release: 0
Summary: Files and Scripts for a RO root fileystem
License: GPL-2.0-or-later
++++++ _servicedata ++++++
--- /var/tmp/diff_new_pack.sYJjgI/_old 2020-08-03 14:13:18.064373642 +0200
+++ /var/tmp/diff_new_pack.sYJjgI/_new 2020-08-03 14:13:18.064373642 +0200
@@ -1,6 +1,6 @@
<servicedata>
<service name="tar_scm">
<param name="url">git://github.com/openSUSE/read-only-root-fs.git</param>
- <param
name="changesrevision">5ed8d156fbe7e16eee305a9747eaa158e92e3cba</param>
+ <param
name="changesrevision">1258c2a7af9c0f7435b859860d19a8536b6964a4</param>
</service>
</servicedata>
\ No newline at end of file
++++++ read-only-root-fs-1.0+git20200121.5ed8d15.tar.xz ->
read-only-root-fs-1.0+git20200730.1243fd0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/read-only-root-fs-1.0+git20200121.5ed8d15/usr/sbin/setup-fstab-for-overlayfs
new/read-only-root-fs-1.0+git20200730.1243fd0/usr/sbin/setup-fstab-for-overlayfs
---
old/read-only-root-fs-1.0+git20200121.5ed8d15/usr/sbin/setup-fstab-for-overlayfs
2020-01-21 18:33:49.000000000 +0100
+++
new/read-only-root-fs-1.0+git20200730.1243fd0/usr/sbin/setup-fstab-for-overlayfs
2020-07-30 19:32:45.000000000 +0200
@@ -6,7 +6,7 @@
#
# Already there?
-if [ -e /etc/fstab ] && grep -qE "overlay /etc" /etc/fstab; then
+if [ -e /etc/fstab ] && grep -qE '^overlay[[:space:]]+/etc[[:space:]]'
/etc/fstab; then
exit 0 # Do nothing
fi
@@ -27,6 +27,8 @@
# Workaround for bsc#1121279
gawk -i inplace '$2 == "/var" { $4 = $4",x-initrd.mount" } { print $0 }'
/etc/fstab
+
+# Make the /root subvolume available during ignition runs (boo#1161264)
gawk -i inplace '$2 == "/root" { $4 = $4",x-initrd.mount" } { print $0 }'
/etc/fstab
exit 0