move plex chown operation, and change test for it

pull/52/head
sparklyballs 8 years ago
parent e92f5b104d
commit 49591fc29c

@ -0,0 +1,23 @@
#!/usr/bin/with-contenv bash
# check for preferences file, make lock file if not found and exit out
if [ ! -e "/config/Library/Application Support/Plex Media Server/Preferences.xml" ]; then
mkdir -p /config/Library
touch /config/Library/linuxserver-chown.lock
chown abc:abc \
/config/Library
chown abc:abc \
/config/Library/linuxserver-chown.lock
exit 0
fi
if [ ! -f "/config/Library/linuxserver-chown.lock" ]; then
echo "Possible migration from existing version detected, please be patient while we chown existing files"
echo "This could take some time"
chown abc:abc -R \
/config/Library
touch /config/Library/linuxserver-chown.lock
chown abc:abc \
/config/Library/linuxserver-chown.lock
echo "chown operation completed"
fi

@ -1,11 +0,0 @@
#!/usr/bin/with-contenv bash
# check for preferences file and exit out if not found
[[ ! -e "/config/Library/Application Support/Plex Media Server/Preferences.xml" ]] && \
exit 0
if [ ! -f "/config/Library/linuxserver-chown.lock" ]; then
find /config/Library ! \( -user abc -a -group abc \) -print0 | xargs -0 chown abc:abc
touch /config/Library/linuxserver-chown.lock
chown abc:abc /config/Library/linuxserver-chown.lock
fi

@ -9,7 +9,7 @@
#######################################################
# test for no version set or opt out for autoupdates
[[ "$ADVANCED_DISABLEUPDATES" ]] || && \
[[ "$ADVANCED_DISABLEUPDATES" ]] && \
exit 0
# set header for no preferences/token message
Loading…
Cancel
Save