mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-04-04 10:03:23 +00:00
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
|