update formatting

This commit is contained in:
aptalca 2022-07-18 10:17:18 -04:00
parent 1506ab2011
commit f2325f30fe
7 changed files with 221 additions and 227 deletions

View file

@ -2,24 +2,24 @@
# create folders
if [ ! -d "${PLEX_MEDIA_SERVER_APPLICATION_SUPPORT_DIR}" ]; then \
mkdir -p "${PLEX_MEDIA_SERVER_APPLICATION_SUPPORT_DIR}"
chown -R abc:abc /config
mkdir -p "${PLEX_MEDIA_SERVER_APPLICATION_SUPPORT_DIR}"
chown -R abc:abc /config
fi
# check Library permissions
PUID=${PUID:-911}
if [ ! "$(stat -c %u /config/Library)" = "$PUID" ]; 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
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
# remove plex pid after unclean stop
[[ -f "/config/Library/Application Support/Plex Media Server/plexmediaserver.pid" ]] && \
rm -f "/config/Library/Application Support/Plex Media Server/plexmediaserver.pid"
rm -f "/config/Library/Application Support/Plex Media Server/plexmediaserver.pid"
# permissions (non-recursive) on config root and folders
chown abc:abc \
/config \
/config/*
/config \
/config/*