69f59feb61
* Features * Support partitioning disk with mounted partitions * Support Proxmox VE * Support gzipped Akamai user_data * Changes * The Dracut module now installs partx * Mark the 3.5.0 config spec as stable * No longer accept configs with version 3.5.0-experimental * Create new 3.6.0-experimental config spec from 3.5.0 * Bug fixes * Fix network race when phoning home on Equinix Metal * Fix Akamai Ignition base64 decoding on padded payloads * Fix Makefile GOARCH for loongarch64 (#1942) - Drop go build bugfix again, fixed upstream - Adapting 0002-allow-multiple-mounts-of-same-device.patch to new 3.6.0 spec OBS-URL: https://build.opensuse.org/package/show/devel:kubic:ignition/ignition?expand=0&rev=131
22 lines
667 B
Desktop File
22 lines
667 B
Desktop File
[Unit]
|
|
Description=Disable firstboot wizard if ignition ran
|
|
|
|
# Make sure ignition completed
|
|
After=ignition-complete.target
|
|
# Don't race with combustion
|
|
After=combustion.service
|
|
|
|
# Make sure /sysroot/etc and var are available
|
|
After=initrd-parse-etc.service
|
|
RequiresMountsFor=/sysroot/etc
|
|
RequiresMountsFor=/sysroot/var
|
|
|
|
ConditionPathExists=/sysroot/etc/.ignition-result.json
|
|
ConditionPathExists=/sysroot/var/lib/YaST2/reconfig_system
|
|
|
|
[Service]
|
|
Type=oneshot
|
|
RemainAfterExit=yes
|
|
# Use grep to avoid pulling in jq
|
|
ExecStart=/bin/sh -ec 'if grep -q "\\"userConfigProvided\\":.*true" /sysroot/etc/.ignition-result.json; then rm /sysroot/var/lib/YaST2/reconfig_system; fi'
|