From ceabacbd2beb196cafb0f84cdb20c7bf4d395953 Mon Sep 17 00:00:00 2001 From: "courtmanr@gmail.com" Date: Wed, 4 Jun 2025 17:23:46 +0100 Subject: [PATCH] fix: ensure systemd service file is created during updates MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Added setup_systemd_service call to perform_update() function - Fixes issue where service file could be missing after updates - Now updates will recreate pulse.service if it doesn't exist 🤖 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 e25a38b33..388b7d1bf 100755 --- a/scripts/install-pulse.sh +++ b/scripts/install-pulse.sh @@ -633,6 +633,7 @@ perform_update() { fi set_permissions + setup_systemd_service # Restart service systemctl start "$SERVICE_NAME"