10 lines
171 B
Bash
10 lines
171 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
set -e
|
||
|
|
||
|
# Start the verifier and the registar in the correct order
|
||
|
/usr/bin/keylime_verifier &
|
||
|
# TODO fix the race condition
|
||
|
sleep 2
|
||
|
/usr/bin/keylime_registrar
|