You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
docker-plex/init/90_uid_gid_fix.sh

15 lines
380 B

#!/bin/bash
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 uid: $(id -u abc)
Plex gid: $(id -g abc)
-----------------------------------
Plex will now continue to boot.
"
sleep 2