From cd55be2f839840c0368497e62a419e32886e4fd8 Mon Sep 17 00:00:00 2001 From: doug Date: Mon, 19 Dec 2022 16:58:43 -0500 Subject: [PATCH] move IMPORT to top of list --- setup/so-whiptail | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup/so-whiptail b/setup/so-whiptail index 44e0f9c18..3eaf7fc68 100755 --- a/setup/so-whiptail +++ b/setup/so-whiptail @@ -461,10 +461,10 @@ whiptail_install_type() { # What kind of install are we doing? install_type=$(whiptail --title "$whiptail_title" --radiolist \ "What kind of installation would you like to do?\n\nFor more information, please see:\n$DOC_BASE_URL/architecture.html" 18 65 5 \ - "EVAL" "Evaluation mode (not for production) " ON \ + "IMPORT" "Import PCAP or log files " ON \ + "EVAL" "Evaluation mode (not for production) " OFF \ "STANDALONE" "Standalone production install " OFF \ "DISTRIBUTED" "Distributed install submenu " OFF \ - "IMPORT" "Standalone to import PCAP or log files " OFF \ "OTHER" "Other install types" OFF \ 3>&1 1>&2 2>&3 )