Accepting request 1190244 from devel:kubic:ignition

- Fix order of previous change - *first* remount rw, *then* create directory.
- Apply (temporary) upstream patch from fedora-coreos-config for compatibility with systemd 256.

OBS-URL: https://build.opensuse.org/request/show/1190244
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/ignition?expand=0&rev=46
This commit is contained in:
Dominique Leuenberger 2024-07-29 19:52:11 +00:00 committed by Git OBS Bridge
commit 89dcea8361
2 changed files with 19 additions and 0 deletions

View File

@ -11,6 +11,13 @@ copy_file_if_exists() {
fi
}
# systemd v256 now runs the initrd with ProtectSystem=yes, which makes /usr
# read-only. Just remount it rw until we have:
# https://github.com/coreos/ignition/issues/1891
if [ ! -w /usr ]; then
mount -o rw,remount /usr
fi
destination=/usr/lib/ignition
mkdir -p $destination

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Mon Jul 29 12:01:10 UTC 2024 - Ignaz Forster <iforster@suse.com>
- Fix order of previous change - *first* remount rw, *then* create
directory.
-------------------------------------------------------------------
Thu Jul 25 13:11:44 UTC 2024 - Ignaz Forster <iforster@suse.com>
- Apply (temporary) upstream patch from fedora-coreos-config for
compatibility with systemd 256.
-------------------------------------------------------------------
Mon Jun 10 14:24:04 UTC 2024 - iforster@suse.com