Files
linuxkit/test/cases/000_build/100_examples/020_sshd/test.sh
2017-11-20 17:06:54 +00:00

24 lines
310 B
Bash

#!/bin/sh
# SUMMARY: Test the sshd example
# LABELS:
set -e
# Source libraries. Uncomment if needed/defined
#. "${RT_LIB}"
. "${RT_PROJECT_ROOT}/_lib/lib.sh"
NAME=sshd
clean_up() {
rm -f ${NAME}*
}
trap clean_up EXIT
# Test code goes here
linuxkit build "${LINUXKIT_EXAMPLES_DIR}/${NAME}.yml"
exit 0