Blame SOURCES/module-setup-cvm.sh

75c452
#!/usr/bin/bash
75c452
# SPDX-License-Identifier: GPL-2.0-or-later
75c452
75c452
check() {
75c452
    return 0
75c452
}
75c452
75c452
depends() {
75c452
    echo tpm2-tss
75c452
    return 0
75c452
}
75c452
75c452
install() {
75c452
    inst_multiple -o \
75c452
        cryptsetup cut mktemp base64 uname hexdump \
75c452
        tpm2_flushcontext tpm2_import tpm2_load tpm2_unseal tpm2_create tpm2_createprimary \
75c452
        /usr/sbin/tpm2-luks-import.sh /lib/udev/rules.d/90-tpm2-import.rules
75c452
}