improve: add reset and removal instructions to install script completion message

Users now see clear instructions for:
- Resetting configuration to start fresh (keeping Pulse installed)
- Complete removal of Pulse (uninstall everything)

This helps users who need to troubleshoot or start over with a clean slate.
This commit is contained in:
Pulse Monitor
2025-08-25 09:36:39 +00:00
parent a94a2ecdb3
commit 99cef1584e
+12
View File
@@ -941,6 +941,18 @@ print_completion() {
echo " curl -sSL https://raw.githubusercontent.com/rcourtman/Pulse/main/install.sh | bash"
echo " Or: wget -qO- https://raw.githubusercontent.com/rcourtman/Pulse/main/install.sh | bash"
echo
echo -e "${YELLOW}Reset configuration (start fresh):${NC}"
echo " systemctl stop $SERVICE_NAME - Stop Pulse"
echo " rm -rf /etc/pulse/* - Remove all config/data"
echo " systemctl start $SERVICE_NAME - Start with fresh config"
echo
echo -e "${YELLOW}Complete removal:${NC}"
echo " systemctl stop $SERVICE_NAME"
echo " systemctl disable $SERVICE_NAME"
echo " rm -rf /etc/pulse /opt/pulse"
echo " rm /etc/systemd/system/${SERVICE_NAME}.service"
echo " systemctl daemon-reload"
echo
}
# Main installation flow