Merge pull request #9 from linuxserver/always-set-id
always setting uid and gid rather than test
This commit is contained in:
commit
4ddd09fdf2
|
|
@ -1,11 +1,10 @@
|
|||
#!/usr/bin/with-contenv bash
|
||||
|
||||
|
||||
PUID=${PUID:-911}
|
||||
PGID=${PGID:-911}
|
||||
|
||||
if [ ! "$(id -u abc)" -eq "$PUID" ]; then usermod -o -u "$PUID" abc ; fi
|
||||
if [ ! "$(id -g abc)" -eq "$PGID" ]; then groupmod -o -g "$PGID" abc ; fi
|
||||
groupmod -o -g "$PGID" abc
|
||||
usermod -o -u "$PUID" abc
|
||||
|
||||
echo "
|
||||
-------------------------------------
|
||||
|
|
|
|||
Loading…
Reference in a new issue