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

13 lines
394 B
Text
Raw Normal View History

#!/usr/bin/with-contenv bash
2016-12-14 14:45:38 -05:00
# check for Library existence and permissions
if [ ! -d "/config/Library" ]; then
2016-12-14 00:10:22 -05:00
mkdir -p /config/Library
2016-12-14 14:45:38 -05:00
chown abc:abc /config/Library
elif [ ! "$(stat -c %u /config/Library)" = "$PUID" ]; then
2016-12-14 00:10:22 -05:00
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