mirror of
https://github.com/linuxserver/docker-plex.git
synced 2026-01-20 19:45:54 +08:00
Fix for Not being able to use GID\UID that is already in use
Added -o option to groupmod, to enable the useage of id's that allready exist in container os. (Fix for unraid)
This commit is contained in:
parent
712a00424a
commit
b30a2249c4
@ -1,14 +1,14 @@
|
||||
#!/bin/bash
|
||||
|
||||
if [ ! "$(id -u plex)" -eq "$PUID" ]; then usermod -u "$PUID" plex ; fi
|
||||
if [ ! "$(id -g plex)" -eq "$PGID" ]; then groupmod -g "$PGID" plex ; fi
|
||||
if [ ! "$(id -u abc)" -eq "$PUID" ]; then usermod -u "$PUID" abc ; fi
|
||||
if [ ! "$(id -g abc)" -eq "$PGID" ]; then groupmod -o -g "$PGID" abc ; fi
|
||||
|
||||
echo "
|
||||
-----------------------------------
|
||||
PLEX GID/UID
|
||||
Plex GID/UID
|
||||
-----------------------------------
|
||||
Plex uid: $(id -u plex)
|
||||
Plex gid: $(id -g plex)
|
||||
Plex uid: $(id -u abc)
|
||||
Plex gid: $(id -g abc)
|
||||
-----------------------------------
|
||||
Plex will now continue to boot.
|
||||
"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user