Implemnting TRUE autoupdate thanks to KodeStar from fanart.tv (and now the linuxserver.io crew, welcome!)
This is herby the kode update
This commit is contained in:
parent
521db75037
commit
2b2990bd8c
2 changed files with 1 additions and 1 deletions
15
init/11_new_user.sh
Normal file
15
init/11_new_user.sh
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
#!/bin/bash
|
||||
|
||||
if [ "$(id -u abc)" != "$PUID" ]; then usermod -u "$PUID" abc ; fi
|
||||
if [ "$(id -g abc)" != "$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
|
||||
Loading…
Add table
Add a link
Reference in a new issue