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
parent
bf8738d31c
commit
5d990a004b
|
@ -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
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue