aboutsummaryrefslogtreecommitdiffstats
path: root/bin/abrmdcontainer/run_abrmd.sh
blob: 00fbf24a7a7cd40d0267bbe5b593114b98ff5135 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/bash
set -e

# Start DBUS
mkdir -p /var/run/dbus
rm -f /var/run/dbus/*
stdbuf -oL -eL dbus-daemon --system --nofork 2>&1 1> /var/log/dbus-daemon.log &
sleep 1m

# Start Resource Manager
if [ -z $TPM_SIMULATOR ]; then
  echo "Using TPM Hardware for the operations";
  tpm2-abrmd
else
  echo "Using TPM Simulator for the opeations";
  hostip=$(ip route show | awk '/default/ {print $3}');
  echo "Connecting to $hostip\n";
  tpm2-abrmd -a $hostip -t socket
fi