docker-plex-wireguard/root/etc/cont-init.d/40-chown-files
2016-12-14 00:10:22 -05:00

16 lines
467 B
Text
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/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
mkdir -p /config/Library
chown abc:abc \
/config/Library
exit 0
fi
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