mirror of
https://github.com/nsacyber/HIRS.git
synced 2024-12-19 13:08:05 +00:00
48205a27f1
rewrote tcg_boot.properties rewrote tcg_boot.properties
37 lines
958 B
Bash
Executable File
37 lines
958 B
Bash
Executable File
#!/bin/bash
|
|
#########################################################################################
|
|
# Script to setup the TPM 2.0 Provisioner for System Tests
|
|
# Initial setup only use resetTpm2Emulator to reset PCR values in subsequent tests
|
|
#########################################################################################
|
|
set -e
|
|
pushd / > /dev/null
|
|
echo "Setting up TPM emulator for the TPM2 Provisioner"
|
|
|
|
source /HIRS/.ci/setup/container/tpm2_common.sh
|
|
|
|
#Wait for the ACA to spin up, if it hasnt already
|
|
waitForAca
|
|
|
|
# Install packages
|
|
installProvisioner
|
|
|
|
# set location of tcg artifacts
|
|
setTcgProperties
|
|
#echo "Contents of /etc/hirs is $(ls -al /etc/hirs)";
|
|
|
|
# Install TPM 2.0 Emulator
|
|
initTpm2Emulator
|
|
|
|
# Update the hirs-site.config file
|
|
updateHirsSiteConfigFile
|
|
|
|
echo "TPM 2.0 Emulator NV RAM list"
|
|
tpm2_nvlist
|
|
|
|
echo ""
|
|
echo "===========HIRS ACA TPM 2.0 Provisioner Setup Complete!==========="
|
|
|
|
popd > /dev/null
|
|
|
|
#tpm2_pcrlist -g sha256
|