From 1b3428626491e372aa2d1e2b4a04560efbb09741 Mon Sep 17 00:00:00 2001 From: Adam Warner Date: Thu, 17 Aug 2017 20:33:53 +0100 Subject: [PATCH] verbiage Signed-off-by: Adam Warner --- automated install/uninstall.sh | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/automated install/uninstall.sh b/automated install/uninstall.sh index ffc14c9e..88eca716 100755 --- a/automated install/uninstall.sh +++ b/automated install/uninstall.sh @@ -209,7 +209,13 @@ else echo -e " ${INFO} Be sure to confirm if any dependencies should not be removed" fi while true; do - read -rp " ${QST} Do you wish to go through each dependency for removal? [Y/n] " yn + echo -e "${COL_YELLOW} ${INFO} The following dependencies may have been added to the system by Pi-hole install:" + echo -n " " + for i in "${DEPS[@]}"; do + echo -n "${i} " + done + echo "${COL_NC}" + read -rp " ${QST} Do you wish to go through each dependency for removal? (Choosing No will leave all dependencies installed)[Y/n] " yn case ${yn} in [Yy]* ) removeAndPurge; break;; [Nn]* ) removeNoPurge; break;;