mirror of
https://github.com/rcourtman/Pulse.git
synced 2026-09-23 11:46:28 +00:00
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:
+12
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user