Ensure haos-wipe service can be called only once per boot (#3924)

In some cases, the wipe service may be called due to a race condition for the
second time during the boot, very likely failing because the filesystems are
already mounted. This can not be reproduced on OVA but can be fairly easy
triggered e.g. on RPi. As we want the service to be executed exactly only once,
we can do what's suggested in [1] and set the RemainAfterExit=yes. That should
ensure the unit is not ever started for the second time.

[1] https://www.github.com/systemd/systemd/issues/29367
This commit is contained in:
Jan Čermák 2025-03-12 20:07:26 +01:00 committed by GitHub
parent 04debe2f53
commit 24640c11ae
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -10,6 +10,7 @@ ConditionKernelCommandLine=haos.wipe=1
[Service]
Type=oneshot
RemainAfterExit=yes
ExecStart=/usr/libexec/haos-wipe
[Install]