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)
pull/1/head
Stian Buch Larsen 10 years ago
parent 712a00424a
commit b30a2249c4

@ -1,14 +1,14 @@
#!/bin/bash #!/bin/bash
if [ ! "$(id -u plex)" -eq "$PUID" ]; then usermod -u "$PUID" plex ; fi if [ ! "$(id -u abc)" -eq "$PUID" ]; then usermod -u "$PUID" abc ; fi
if [ ! "$(id -g plex)" -eq "$PGID" ]; then groupmod -g "$PGID" plex ; fi if [ ! "$(id -g abc)" -eq "$PGID" ]; then groupmod -o -g "$PGID" abc ; fi
echo " echo "
----------------------------------- -----------------------------------
PLEX GID/UID Plex GID/UID
----------------------------------- -----------------------------------
Plex uid: $(id -u plex) Plex uid: $(id -u abc)
Plex gid: $(id -g plex) Plex gid: $(id -g abc)
----------------------------------- -----------------------------------
Plex will now continue to boot. Plex will now continue to boot.
" "

Loading…
Cancel
Save