docker-plex-wireguard/root/etc/cont-init.d/40-chown-files

17 lines
467 B
Text
Raw Normal View History

#!/usr/bin/with-contenv bash
2016-12-14 00:10:22 -05:00
# check for preferences file and if not found, exit out
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 \
/config/Library
2016-12-14 00:10:22 -05:00
exit 0
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 \
/config/Library
fi