mirror of
https://github.com/linuxserver/docker-plex.git
synced 2026-04-13 00:04:33 +08:00
Condense the ownership check
This commit is contained in:
parent
ac7bb65f5f
commit
8c4bcb733a
@ -1,14 +1,10 @@
|
||||
#!/usr/bin/with-contenv bash
|
||||
|
||||
# check for preferences file and if not found, exit out
|
||||
if [ ! -e "/config/Library/Application Support/Plex Media Server/Preferences.xml" ]; then
|
||||
# check for Library existence and permissions
|
||||
if [ ! -d "/config/Library" ]; then
|
||||
mkdir -p /config/Library
|
||||
chown abc:abc \
|
||||
/config/Library
|
||||
exit 0
|
||||
fi
|
||||
|
||||
if [ ! "$(stat -c %u /config/Library)" = "$PUID" ]; then
|
||||
chown abc:abc /config/Library
|
||||
elif [ ! "$(stat -c %u /config/Library)" = "$PUID" ]; then
|
||||
echo "Change in ownership detected, please be patient while we chown existing files"
|
||||
echo "This could take some time"
|
||||
chown abc:abc -R \
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user