From fd5a3ea921fa73ea6c71ed684513f36f64ea21be Mon Sep 17 00:00:00 2001 From: Bram Prieshof Date: Fri, 8 Jan 2021 11:51:39 +0100 Subject: [PATCH] removed forgetten echo --- InstallMonitModule.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/InstallMonitModule.sh b/InstallMonitModule.sh index 30ed788..25fe9c8 100644 --- a/InstallMonitModule.sh +++ b/InstallMonitModule.sh @@ -21,8 +21,8 @@ while true; do echo "" read -p "Var list $1 not foud, continue without monit for $2? [Y/n]" yn case $yn in - [Yy]* ) echo install; break;; - [Nn]* ) echo exit;; + [Yy]* ) break;; + [Nn]* ) exit;; * ) echo "Please answer yes or no.";; esac done