From 3255b25b9e6a741a3d83e74d4d678f2b05c237bd Mon Sep 17 00:00:00 2001 From: 007hacky007 <007hacky007@users.noreply.github.com> Date: Tue, 14 Apr 2026 16:10:52 +0200 Subject: [PATCH] fix: allow squid auth helper to read passwords --- install/squid-install.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/install/squid-install.sh b/install/squid-install.sh index a92528c3..0d19afe8 100644 --- a/install/squid-install.sh +++ b/install/squid-install.sh @@ -72,7 +72,8 @@ msg_ok "Installed Dependencies" msg_info "Preparing Authentication" touch /etc/squid/passwords -chmod 600 /etc/squid/passwords +chown proxy:proxy /etc/squid/passwords +chmod 640 /etc/squid/passwords msg_ok "Initialized Password File" msg_info "Validating Squid Configuration"