aboutsummaryrefslogtreecommitdiff
path: root/test/common-utils/centos-7.sh
blob: a81ae2f3e757fcd26dcf7b578141f5f6b3657fb5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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 "${VERSION_ID}" = "7"

# Report result
reportResults