mirror of
https://github.com/rcourtman/Pulse.git
synced 2026-05-19 07:54:10 +00:00
- Go backend with Proxmox/PBS integration - Modern TypeScript/SolidJS frontend - WebSocket real-time updates - Clean project structure with no legacy code
19 lines
No EOL
489 B
Bash
Executable file
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!" |