Merge pull request #7813 from Security-Onion-Solutions/dougburks-patch-1

Remove distributed verbiage from other node option in so-whiptail
This commit is contained in:
Doug Burks
2022-04-18 08:24:52 -04:00
committed by GitHub
+2 -2
View File
@@ -936,14 +936,14 @@ whiptail_install_type_other() {
# so only show it on network installs for now # so only show it on network installs for now
if [[ $setup_type == 'network' ]]; then if [[ $setup_type == 'network' ]]; then
install_type=$(whiptail --title "$whiptail_title" --radiolist \ install_type=$(whiptail --title "$whiptail_title" --radiolist \
"Choose distributed node type:" 9 65 2 \ "Choose node type:" 9 65 2 \
"ANALYST" "Setup will run 'so-setup analyst' " ON \ "ANALYST" "Setup will run 'so-setup analyst' " ON \
"HELIXSENSOR" "Create a Helix sensor " OFF \ "HELIXSENSOR" "Create a Helix sensor " OFF \
3>&1 1>&2 2>&3 3>&1 1>&2 2>&3
) )
else else
install_type=$(whiptail --title "$whiptail_title" --radiolist \ install_type=$(whiptail --title "$whiptail_title" --radiolist \
"Choose distributed node type:" 8 65 1 \ "Choose node type:" 8 65 1 \
"HELIXSENSOR" "Create a Helix sensor " ON \ "HELIXSENSOR" "Create a Helix sensor " ON \
3>&1 1>&2 2>&3 3>&1 1>&2 2>&3
) )