mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-12-27 16:39:38 -05:00
15 lines
334 B
Plaintext
15 lines
334 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
# Copyright (c) Edgeless Systems GmbH
|
||
|
#
|
||
|
# SPDX-License-Identifier: AGPL-3.0-only
|
||
|
|
||
|
# This script reads the measurements of the system
|
||
|
# and prints the message to the serial console
|
||
|
|
||
|
main() {
|
||
|
pcr_state="$(/usr/sbin/measurement-reader)"
|
||
|
echo -e "${pcr_state}\n" > /run/issue.d/35_constellation_pcrs.issue
|
||
|
}
|
||
|
|
||
|
main
|