features/test/common-utils/rocky-9.sh

16 lines
332 B
Bash
Raw Permalink Normal View History

#!/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"
2022-12-27 21:35:13 +03:00
check "curl" curl --version
check "jq" jq --version
# Report result
reportResults