7f183ebd5d
Keylime control plane (verifier, registrar, tenant) container OBS-URL: https://build.opensuse.org/request/show/1029993 OBS-URL: https://build.opensuse.org/package/show/devel:microos:containers/keylime-control-plane-image?expand=0&rev=1
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
|