aboutsummaryrefslogtreecommitdiff
path: root/test/common-utils/devcontainer-custom-home.sh
blob: 9b64cc0bf3356fc68a01486dd1452995d45f8b5b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash

set -e

# Optional: Import test library
source dev-container-features-test-lib

# Definition specific tests
check "user is customUser" grep customUser <(whoami)
check "home is /customHome" grep "/customHome" <(getent passwd customUser | cut -d: -f6) 

# Report result
reportResults