mirror of
https://github.com/rcourtman/Pulse.git
synced 2026-09-23 19:57:09 +00:00
5665106a7d
- Go backend with Proxmox/PBS integration - Modern TypeScript/SolidJS frontend - WebSocket real-time updates - Clean project structure with no legacy code
19 lines
489 B
Bash
Executable File
19 lines
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!" |