mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-10-08 19:23:47 +00:00
- remove more editions code - remove unused tool pad4 - add back whale to test output Signed-off-by: Justin Cormack <justin.cormack@docker.com>
16 lines
221 B
Bash
Executable File
16 lines
221 B
Bash
Executable File
#!/bin/sh
|
|
|
|
function failed {
|
|
printf "Moby test suite FAILED\n"
|
|
/sbin/poweroff -f
|
|
}
|
|
|
|
/check-kernel-config.sh || failed
|
|
bash /check-config.sh || failed
|
|
|
|
printf "Moby test suite PASSED\n"
|
|
|
|
cat /etc/moby
|
|
|
|
/sbin/poweroff -f
|