diff options
Diffstat (limited to 'test/common-utils/rocky-9.sh')
-rwxr-xr-x | test/common-utils/rocky-9.sh | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/test/common-utils/rocky-9.sh b/test/common-utils/rocky-9.sh new file mode 100755 index 0000000..c4b5244 --- /dev/null +++ b/test/common-utils/rocky-9.sh @@ -0,0 +1,14 @@ +#!/bin/bash + +set -e + +# Optional: Import test library +source dev-container-features-test-lib + +# Definition specific tests +. /etc/os-release +check "non-root user" test "$(whoami)" = "devcontainer" +check "distro" test "${PLATFORM_ID}" = "platform:el9" + +# Report result +reportResults
\ No newline at end of file |