From 18c57600c650beda4e26ee6774a2e7b2ce07e241 Mon Sep 17 00:00:00 2001 From: Chris Date: Sun, 10 Aug 2025 13:42:47 -0400 Subject: [PATCH] Pulse: fix binary path (#6740) - recent updates have changed the path --- ct/pulse.sh | 5 +++++ install/pulse-install.sh | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ct/pulse.sh b/ct/pulse.sh index 5c8a953ee..02790c724 100644 --- a/ct/pulse.sh +++ b/ct/pulse.sh @@ -41,6 +41,11 @@ function update_script() { fetch_and_deploy_gh_release "pulse" "rcourtman/Pulse" "prebuild" "latest" "/opt/pulse" "*-linux-amd64.tar.gz" chown -R pulse:pulse /etc/pulse /opt/pulse + sed -i 's|pulse/pulse|pulse/bin/pulse|' /etc/systemd/system/pulse.service + systemctl daemon-reload + if [[ -f /opt/pulse/pulse ]]; then + rm -rf /opt/pulse/{pulse,frontend-modern} + fi msg_info "Starting ${APP}" systemctl start pulse diff --git a/install/pulse-install.sh b/install/pulse-install.sh index 83d5dfd8a..c27c08e64 100644 --- a/install/pulse-install.sh +++ b/install/pulse-install.sh @@ -44,7 +44,7 @@ Type=simple User=pulse Group=pulse WorkingDirectory=/opt/pulse -ExecStart=/opt/pulse/pulse +ExecStart=/opt/pulse/bin/pulse Restart=always RestartSec=3 StandardOutput=journal