From 99cef1584e2fa8f0ee538671e38d11566de0978b Mon Sep 17 00:00:00 2001 From: Pulse Monitor Date: Mon, 25 Aug 2025 09:36:39 +0000 Subject: [PATCH] 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. --- install.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/install.sh b/install.sh index 09d24b158..029f6a25c 100755 --- a/install.sh +++ b/install.sh @@ -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