Skip to content
Snippets Groups Projects
Commit 55f945bf authored by j0nnymoe's avatar j0nnymoe Committed by GitHub
Browse files

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

always setting uid and gid rather than test
parents 84a610ce fccbe05a
No related branches found
No related tags found
No related merge requests found
#!/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 "
-------------------------------------
......@@ -17,8 +16,8 @@ echo "
|_|
Brought to you by linuxserver.io
We do accept donations at:
https://www.linuxserver.io/donations
We gratefully accept donations at:
https://www.linuxserver.io/index.php/donations/
-------------------------------------
GID/UID
-------------------------------------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment