mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-07-24 19:28:09 +00:00
A few of these tests appear to be misnumbered, so renumber them. Signed-off-by: David Scott <dave@recoil.org>
14 lines
271 B
Bash
14 lines
271 B
Bash
#!/bin/sh
|
|
|
|
function failed {
|
|
printf "containerd commandline vars not set: FAILED\n" >/dev/console
|
|
/sbin/poweroff -f
|
|
exit 1
|
|
}
|
|
|
|
ps -ef | grep containerd | grep -q trace || failed
|
|
|
|
printf "containerd commandline vars test suite PASSED\n" >/dev/console
|
|
|
|
/sbin/poweroff -f
|