From 72dc267ab51092eec22e4c1fff1b223950b395b5 Mon Sep 17 00:00:00 2001 From: William Wernert Date: Tue, 27 Oct 2020 12:14:44 -0400 Subject: [PATCH] [fix] Menu sizing fixes --- setup/so-whiptail | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/setup/so-whiptail b/setup/so-whiptail index 4ad09e073..9d2b2fcd6 100755 --- a/setup/so-whiptail +++ b/setup/so-whiptail @@ -560,7 +560,7 @@ whiptail_install_type() { # What kind of install are we doing? install_type=$(whiptail --title "Security Onion Setup" --radiolist \ - "Choose install type:" 10 65 5 \ + "Choose install type:" 12 65 5 \ "EVAL" "Evaluation mode (not for production) " ON \ "STANDALONE" "Standalone production install " OFF \ "DISTRIBUTED" "Distributed install submenu " OFF \ @@ -612,9 +612,9 @@ whiptail_install_type_other() { [ -n "$TESTING" ] && return install_type=$(whiptail --title "Security Onion Setup" --radiolist \ - "Choose distributed node type:" 13 60 2 \ - "ANALYST" "Quit setup and run the installer for an analyst workstation" ON \ - "HELIXSENSOR" "Create a Helix sensor" OFF \ + "Choose distributed node type:" 9 65 2 \ + "ANALYST" "Quit setup and run so-analyst-install " ON \ + "HELIXSENSOR" "Create a Helix sensor " OFF \ 3>&1 1>&2 2>&3 )