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

15 lines
307 B
Bash
Raw 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
# Report result
reportResults