2016-08-22 13:43:05 +01:00
|
|
|
|
#!/usr/bin/with-contenv bash
|
|
|
|
|
|
|
2016-12-14 00:10:22 -05:00
|
|
|
|
# check for preferences file and if not found, exit out
|
2016-08-22 13:43:05 +01:00
|
|
|
|
if [ ! -e "/config/Library/Application Support/Plex Media Server/Preferences.xml" ]; then
|
2016-12-14 00:10:22 -05:00
|
|
|
|
mkdir -p /config/Library
|
|
|
|
|
|
chown abc:abc \
|
2016-08-22 13:43:05 +01:00
|
|
|
|
/config/Library
|
2016-12-14 00:10:22 -05:00
|
|
|
|
exit 0
|
2016-08-22 13:43:05 +01:00
|
|
|
|
fi
|
|
|
|
|
|
|
2016-12-14 00:10:22 -05:00
|
|
|
|
if [ ! `stat -c %U /config/Library` = "abc" ]; then
|
|
|
|
|
|
echo "Change in ownership detected, please be patient while we chown existing files"
|
|
|
|
|
|
echo "This could take some time"
|
|
|
|
|
|
chown abc:abc -R \
|
2016-08-22 13:43:05 +01:00
|
|
|
|
/config/Library
|
|
|
|
|
|
fi
|