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 changed files with 5 additions and 5 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue