Skip to content
Snippets Groups Projects
Commit fccbe05a authored by sparklyballs's avatar sparklyballs
Browse files

always setting uid and gid rather than test

parent 84a610ce
No related branches found
No related tags found
No related merge requests found
#!/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 "
------------------------------------- -------------------------------------
...@@ -17,8 +16,8 @@ echo " ...@@ -17,8 +16,8 @@ echo "
|_| |_|
Brought to you by linuxserver.io Brought to you by linuxserver.io
We do accept donations at: We gratefully accept donations at:
https://www.linuxserver.io/donations https://www.linuxserver.io/index.php/donations/
------------------------------------- -------------------------------------
GID/UID 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