From 739989473d99fcb73ea53b313ad3680c654ddf9f Mon Sep 17 00:00:00 2001 From: William Wernert Date: Mon, 20 Apr 2020 15:41:01 -0400 Subject: [PATCH] [fix] Provide feedback when first running script, and execute whiptail commands --- setup/so-setup | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/setup/so-setup b/setup/so-setup index a2c134b72..a30914238 100755 --- a/setup/so-setup +++ b/setup/so-setup @@ -26,7 +26,7 @@ export setup_type case "$setup_type" in iso | network) # Accepted values - true + echo "Beginning Security Onion $setup_type install" ;; *) echo "Invalid install type, must be 'iso' or 'network'" @@ -49,9 +49,7 @@ fi setterm -blank 0 -if whiptail_you_sure; then - true -else +if ! (whiptail_you_sure); then echo "User cancelled setup.">> $setup_log 2>&1 whiptail_cancel fi