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

15 lines
307 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:el8"
2022-12-27 21:35:13 +03:00
check "curl" curl --version
# Report result
reportResults