Pulse/scripts/uninstall-services.sh
Pulse Monitor 5665106a7d Initial clean Go + TypeScript rewrite
- Go backend with Proxmox/PBS integration
- Modern TypeScript/SolidJS frontend
- WebSocket real-time updates
- Clean project structure with no legacy code
2025-07-28 21:24:33 +00:00

19 lines
No EOL
489 B
Bash
Executable file

#!/bin/bash
# Uninstall Pulse systemd services
echo "Stopping Pulse services..."
sudo systemctl stop pulse-backend.service
sudo systemctl stop pulse-frontend.service
echo "Disabling services..."
sudo systemctl disable pulse-backend.service
sudo systemctl disable pulse-frontend.service
echo "Removing service files..."
sudo rm -f /etc/systemd/system/pulse-backend.service
sudo rm -f /etc/systemd/system/pulse-frontend.service
sudo systemctl daemon-reload
echo "Services uninstalled!"