From 3c83e990f115cba46f4a99893015a3dd748e6f0a Mon Sep 17 00:00:00 2001 From: Alex Greenland Date: Sun, 29 Dec 2024 20:50:52 +0000 Subject: [PATCH] #4104 Fix permissions change code --- install.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 29854c0dd..8eb6824ab 100755 --- a/install.sh +++ b/install.sh @@ -1009,7 +1009,8 @@ set_permissions() fi # Ensure the support folder has the correct owner and group - sudo chown "${ALLSKY_OWNER}":"${WEBSERVER_GROUP}" "${ALLSKY_WEBUI}/support" + sudo chown "${ALLSKY_OWNER}":"${WEBSERVER_GROUP}" "${ALLSKY_WEBUI}/support" + sudo chmod 774 "${ALLSKY_WEBUI}/support" }