mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-10-28 13:19:12 +00:00
- grant all capabilities - generate human readable output - add a check.sh script to see if the tests passed/failed - add a poweroff image to handle powering off the vm Signed-off-by: Dave Tucker <dt@docker.com>
7 lines
68 B
Bash
Executable File
7 lines
68 B
Bash
Executable File
#!/bin/sh
|
|
|
|
TIMEOUT=${1:-30}
|
|
sleep "${TIMEOUT}"
|
|
|
|
/sbin/poweroff -f
|