Brendan DeBeasi 155cbf4efd fix: use exact match for USER_NAME in /etc/passwd check
The grep pattern `^${USER_NAME}` incorrectly matches usernames that
are prefixes of existing users. For example, USER_NAME=b matches the
'bin' user, causing the container to halt with a false positive.

Adding a colon after USER_NAME ensures exact username matching:
`^${USER_NAME}:` only matches the exact username field.

closes #118
2026-01-21 12:32:07 -08:00
..
2023-06-12 15:45:49 +01:00