constellation/image/mkosi/mkosi.skeleton/usr/libexec/constellation-pcrs

11 lines
252 B
Plaintext
Raw Normal View History

2022-10-19 07:10:15 -04:00
#!/usr/bin/bash
# This script reads the PCR state of the system
# and prints the message to the serial console
main() {
pcr_state="$(tpm2_pcrread sha256)"
echo -e "PCR state:\n${pcr_state}\n" > /run/issue.d/35_constellation_pcrs.issue
}
main