From c9df156c2181d3f0ad75b15b2c6bd322b35c17f8 Mon Sep 17 00:00:00 2001 From: David Schroeder Date: Sat, 23 Jul 2022 20:18:34 -0500 Subject: [PATCH] Update cc-cleaner.sh --- cc-cleaner.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/cc-cleaner.sh b/cc-cleaner.sh index b9afdad..f38a8b6 100755 --- a/cc-cleaner.sh +++ b/cc-cleaner.sh @@ -10,7 +10,7 @@ echo "" read -n 1 -p "Are you sure you wish to remove Cluster Control and all data (Y/n)?" choice case "$choice" in -[Nn]) exit 0;; +[Nn]) echo ''; exit 0;; * ) apt remove --purge clustercontrol* apt remove --purge mysql-server* @@ -27,6 +27,7 @@ case "$choice" in rm -Rf /var/www rm -Rf /etc/php - install-cc uninstall;; + install-cc uninstall + echo '';; esac