The call to mygetent here:
|
Containerusergroup="$(mygetent group "$Containerusergid" | cut -d: -f1 || echo group_"$Containeruser")" |
may be mygetent group 100
but the fallback option in mygetent
|
grep "^${2:-NOENTRY}:" < "/etc/${1:-NOFILESPECIFIED}" |
only looks for the key in the first field (group_name), not in group_id
The call to
mygetenthere:x11docker/x11docker
Line 6691 in e22c320
may be
mygetent group 100but the fallback option in
mygetentx11docker/x11docker
Line 1057 in e22c320
only looks for the key in the first field (group_name), not in group_id