diff options
author | Lennart Poettering <lennart@poettering.net> | 2022-12-15 18:07:20 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2022-12-15 22:20:54 +0100 |
commit | 0318d54539fe168822447889ac0e858a10c55f74 (patch) | |
tree | ae81bee8c7c2cff68e085bbebe07e24fe23bcac2 /units/systemd-pcrphase-initrd.service.in | |
parent | test: show and check almost all journal entries since the relevant command be... (diff) | |
download | systemd-0318d54539fe168822447889ac0e858a10c55f74.tar.xz systemd-0318d54539fe168822447889ac0e858a10c55f74.zip |
pcrphase: gracefully exit if TPM2 support is incomplete
If everything points to the fact that TPM2 should work, but then the
driver fails to initialize we should handle this gracefully and not
cause failing services all over the place.
Fixes: #25700
Diffstat (limited to 'units/systemd-pcrphase-initrd.service.in')
-rw-r--r-- | units/systemd-pcrphase-initrd.service.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/units/systemd-pcrphase-initrd.service.in b/units/systemd-pcrphase-initrd.service.in index c1ad5ef844..e437c7e1ce 100644 --- a/units/systemd-pcrphase-initrd.service.in +++ b/units/systemd-pcrphase-initrd.service.in @@ -20,5 +20,5 @@ ConditionPathExists=/sys/firmware/efi/efivars/StubPcrKernelImage-4a67b082-0a4c-4 [Service] Type=oneshot RemainAfterExit=yes -ExecStart={{ROOTLIBEXECDIR}}/systemd-pcrphase enter-initrd -ExecStop={{ROOTLIBEXECDIR}}/systemd-pcrphase leave-initrd +ExecStart={{ROOTLIBEXECDIR}}/systemd-pcrphase --graceful enter-initrd +ExecStop={{ROOTLIBEXECDIR}}/systemd-pcrphase --graceful leave-initrd |