From 9acd760ca417b034844160f361eb8b89949676a6 Mon Sep 17 00:00:00 2001 From: Mike Reeves Date: Fri, 23 Mar 2018 16:28:02 -0400 Subject: [PATCH] Setup Script - added message before you make changes --- so-setup-network.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/so-setup-network.sh b/so-setup-network.sh index bdc7ba613..9e7def1bf 100644 --- a/so-setup-network.sh +++ b/so-setup-network.sh @@ -356,6 +356,12 @@ whiptail_oinkcode() { } +whiptail_make_changes() { + whiptail --title "Security Onion Setup" --yesno "We are going to set this machine up as a $INSTALLTYPE. Please hit YES to make changes or NO to cancel." 8 78 + + local exitstatus=$? + whiptail_check_exitstatus $exitstatus +} whiptail_management_server() { MASTERSRV=$(whiptail --title "Enter your Master Server IP Address" --inputbox 10 60 1.2.3.4 3>&1 1>&2 2>&3)