From 2244ff031485493817d9d8d8078c005b487d0992 Mon Sep 17 00:00:00 2001 From: rcourtman Date: Sun, 12 Oct 2025 22:39:18 +0000 Subject: [PATCH] fix: Change RuntimeDirectoryMode to 0775 for container access The pulse user in the container (UID 1001) needs to access the /run/pulse-temp-proxy directory owned by root:root. Changed from 0770 (owner+group only) to 0775 (add world read+execute) so the pulse user can access the socket. Related to #528 --- scripts/install-temp-proxy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install-temp-proxy.sh b/scripts/install-temp-proxy.sh index 95b5e3c..017c9df 100755 --- a/scripts/install-temp-proxy.sh +++ b/scripts/install-temp-proxy.sh @@ -155,7 +155,7 @@ RestartSec=5s # Runtime directory for socket RuntimeDirectory=pulse-temp-proxy -RuntimeDirectoryMode=0770 +RuntimeDirectoryMode=0775 # Security hardening NoNewPrivileges=true