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

(cherry picked from commit 24640c11aeb89290f7a1ecfd0c8c6527f8523e27)
This commit is contained in:
Jan Čermák 2025-03-12 20:07:26 +01:00 committed by Jan Čermák
parent 7e6e4119a7
commit a4190754fe
No known key found for this signature in database
GPG Key ID: A78C897AA3AF012B

View File

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