From 3494f5c4fdfd04bb33ad328118d7eadf7af3cec1 Mon Sep 17 00:00:00 2001 From: "courtmanr@gmail.com" Date: Wed, 4 Jun 2025 17:31:34 +0100 Subject: [PATCH] fix: ensure service file exists even when version is current MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Added setup_systemd_service to "already latest version" path in updates - Fixes case where service file is missing but version check passes - Now recreates service file in all update scenarios 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- scripts/install-pulse.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/install-pulse.sh b/scripts/install-pulse.sh index 388b7d1bf..de7bbbae9 100755 --- a/scripts/install-pulse.sh +++ b/scripts/install-pulse.sh @@ -608,6 +608,7 @@ perform_update() { local current_version=$(get_current_version) if [ "$current_version" = "${TARGET_TAG#v}" ]; then print_info "Already running latest version" + setup_systemd_service systemctl start "$SERVICE_NAME" return 0 fi