Fabian Vogt
c7b33211de
- Add "exec" in keylime-control-plane-start.sh - Drop docker-entrypoint.sh script - Add README documentation OBS-URL: https://build.opensuse.org/request/show/1030208 OBS-URL: https://build.opensuse.org/package/show/devel:microos:containers/keylime-control-plane-image?expand=0&rev=2
10 lines
176 B
Bash
10 lines
176 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
|
|
exec /usr/bin/keylime_registrar
|