2016-08-22 13:43:05 +01:00
|
|
|
|
#!/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 \
|
2016-08-22 13:43:05 +01:00
|
|
|
|
/config/Library
|
|
|
|
|
|
fi
|