Merge pull request #9 from linuxserver/always-set-id

always setting uid and gid rather than test
This commit is contained in:
j0nnymoe 2016-11-16 19:25:27 +00:00 committed by GitHub
commit 4ddd09fdf2

View file

@ -1,11 +1,10 @@
#!/usr/bin/with-contenv bash #!/usr/bin/with-contenv bash
PUID=${PUID:-911} PUID=${PUID:-911}
PGID=${PGID:-911} PGID=${PGID:-911}
if [ ! "$(id -u abc)" -eq "$PUID" ]; then usermod -o -u "$PUID" abc ; fi groupmod -o -g "$PGID" abc
if [ ! "$(id -g abc)" -eq "$PGID" ]; then groupmod -o -g "$PGID" abc ; fi usermod -o -u "$PUID" abc
echo " echo "
------------------------------------- -------------------------------------