Files
linuxkit/alpine/packages/test/etc/init.d/test
2017-02-02 11:57:28 -08:00

26 lines
354 B
Plaintext
Executable File

#!/sbin/openrc-run
depend()
{
need docker containerd
}
start()
{
[ -d /test ] || exit 0
ebegin "Running tests"
if containerd-ctr containers start --no-pivot --attach test /test
then
printf "Moby test suite PASSED\n"
else
printf "Moby test suite FAILED\n"
fi
eend "Tests completed"
# now terminate with extreme prejudice
poweroff -f
}