From 6ec02743dad8fadce0a28d336186955e629f9a36 Mon Sep 17 00:00:00 2001 From: paspo Date: Thu, 31 Jul 2025 15:16:04 +0200 Subject: [PATCH] FIX #8: webroot chowning in background --- rootfs/app/entrypoint.sh.d/90_chown_webroot.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rootfs/app/entrypoint.sh.d/90_chown_webroot.sh b/rootfs/app/entrypoint.sh.d/90_chown_webroot.sh index f593263..8d7076f 100755 --- a/rootfs/app/entrypoint.sh.d/90_chown_webroot.sh +++ b/rootfs/app/entrypoint.sh.d/90_chown_webroot.sh @@ -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 {} \; &