Merge pull request #79 from linuxserver/chown-fix
perform ownership check on /config, chown if necessary
This commit is contained in:
commit
dc8483ee93
1 changed files with 8 additions and 19 deletions
|
|
@ -1,23 +1,12 @@
|
||||||
#!/usr/bin/with-contenv bash
|
#!/usr/bin/with-contenv bash
|
||||||
|
|
||||||
# check for preferences file, make lock file if not found and exit out
|
# check for Library existence and permissions
|
||||||
if [ ! -e "/config/Library/Application Support/Plex Media Server/Preferences.xml" ]; then
|
if [ ! -d "/config/Library" ]; then
|
||||||
mkdir -p /config/Library
|
mkdir -p /config/Library
|
||||||
touch /config/Library/linuxserver-chown.lock
|
chown abc:abc /config/Library
|
||||||
chown abc:abc \
|
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 \
|
||||||
/config/Library
|
/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
|
fi
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue