Skip to content

Commit ea9bb93

Browse files
rcourtmanclaude
andcommitted
fix: remove all pulse service files during uninstall
- Added removal of pulse-monitor.service and pulse-proxmox.service during uninstall - Fixes false positive "Pulse is installed" detection after removal - Ensures complete cleanup of all legacy service files - Prevents orphaned service files from interfering with installation detection 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 5ab870a commit ea9bb93

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

scripts/install-pulse.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -817,7 +817,10 @@ perform_remove() {
817817
sleep 2
818818
pkill -9 -f "/opt/pulse/server/index.js" 2>/dev/null || true
819819

820+
# Remove all pulse-related service files
820821
rm -f "/etc/systemd/system/$SERVICE_NAME"
822+
rm -f "/etc/systemd/system/pulse-monitor.service"
823+
rm -f "/etc/systemd/system/pulse-proxmox.service"
821824
systemctl daemon-reload
822825

823826
# Remove directories

0 commit comments

Comments
 (0)