* Features * Add Azure blob support for fetching ignition configs * Add a check for ignition config in vendor-data (proxmoxve) * Bug fixes * Add pkey_cca kernel module to detect CEX domain for LUKS encryption - Add support for nested /etc subvolume (t-u 5.0.0) OBS-URL: https://build.opensuse.org/package/show/devel:kubic:ignition/ignition?expand=0&rev=133
13 lines
701 B
Desktop File
13 lines
701 B
Desktop File
[Unit]
|
|
Description=Unmount initrd fstab entries for Ignition
|
|
DefaultDependencies=false
|
|
Before=ignition-complete.target
|
|
After=ignition-files.service
|
|
# Make sure not to unmount the real sysroot-*.mount units
|
|
Before=initrd-parse-etc.service
|
|
|
|
[Service]
|
|
Type=oneshot
|
|
ExecStart=/bin/sh -e -c 'if [ -f /sysroot/etc/systemd/system-preset/20-ignition.preset ]; then while read line; do systemctl --root=/sysroot $line; done < /sysroot/etc/systemd/system-preset/20-ignition.preset; fi'
|
|
ExecStart=/bin/sh -e -c 'eval $(awk '"'"'$4 ~ /x-initrd.mount/ && $1 !~ /^#/ && ! ( $2 == "/etc" && $3 == "none" ) {print "if findmnt /sysroot" $2 " >/dev/null; then umount -R /sysroot" $2 "; fi;" }'"'"' /sysroot/etc/fstab)'
|