FIX #8: webroot chowning in background

This commit is contained in:
2025-07-31 15:16:04 +02:00
parent 0a518f539e
commit 6ec02743da

View File

@@ -3,5 +3,5 @@
echo "# chowning ${PATH_WEBROOT} to ${PUID}:${GROUPNAME}..."
chown "${PUID}:${GROUPNAME}" "${PATH_WEBROOT}" -R
find "${PATH_WEBROOT}" -type d -exec chmod 0755 {} \;
find "${PATH_WEBROOT}" -type f -exec chmod 0644 {} \;
find "${PATH_WEBROOT}" -type d -exec chmod 0755 {} \; &
find "${PATH_WEBROOT}" -type f -exec chmod 0644 {} \; &