From 95c85f6e0110bcf5bc4aa66ea592abcacd84826a Mon Sep 17 00:00:00 2001 From: rcourtman Date: Mon, 20 Oct 2025 22:28:33 +0000 Subject: [PATCH] fix: use correct service name (pulse.service) for proxy environment override MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The installer was configuring pulse-backend.service.d but the actual service is pulse.service, so the PULSE_SENSOR_PROXY_SOCKET environment variable wasn't being set. Changed: pulse-backend.service → pulse.service This ensures Pulse actually uses the proxy socket for temperature monitoring instead of attempting SSH connections. --- scripts/install-sensor-proxy.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/install-sensor-proxy.sh b/scripts/install-sensor-proxy.sh index 4916ea7..bdc5f3a 100755 --- a/scripts/install-sensor-proxy.sh +++ b/scripts/install-sensor-proxy.sh @@ -918,8 +918,8 @@ fi # Configure Pulse backend environment override inside container print_info "Configuring Pulse to use proxy..." -pct exec "$CTID" -- bash -lc "mkdir -p /etc/systemd/system/pulse-backend.service.d" -pct exec "$CTID" -- bash -lc "cat <<'EOF' >/etc/systemd/system/pulse-backend.service.d/10-pulse-proxy.conf +pct exec "$CTID" -- bash -lc "mkdir -p /etc/systemd/system/pulse.service.d" +pct exec "$CTID" -- bash -lc "cat <<'EOF' >/etc/systemd/system/pulse.service.d/10-pulse-proxy.conf [Service] Environment=PULSE_SENSOR_PROXY_SOCKET=${MOUNT_TARGET}/pulse-sensor-proxy.sock EOF"