feat(crypt): check if tpm2-tss module is needed in hostonly mode

In hostonly mode, include the tpm2-tss module if any encrypted volumes
are configured to be decrypted using the TPM2 device.
master
Antonio Alvarez Feijoo 2021-11-23 14:53:18 +01:00 committed by Jóhann B. Guðmundsson
parent bf8738d31c
commit 5d990a004b
1 changed files with 8 additions and 1 deletions

View File

@ -18,7 +18,14 @@ check() {

# called by dracut
depends() {
echo dm rootfs-block
local deps
deps="dm rootfs-block"
if [[ $hostonly && -f "$dracutsysrootdir"/etc/crypttab ]]; then
if grep -q "tpm2-device=" "$dracutsysrootdir"/etc/crypttab; then
deps+=" tpm2-tss"
fi
fi
echo "$deps"
return 0
}