|
|
|
@ -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 \
|
|
|
|
|