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:
commit
89dcea8361
@ -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
|
||||
|
||||
|
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user