Update dist install menus' top text

This commit is contained in:
William Wernert
2021-11-08 11:04:51 -05:00
parent f66d915f5d
commit acba82d194

View File

@@ -778,9 +778,17 @@ whiptail_install_type_dist() {
whiptail_install_type_dist_new() {
[ -n "$TESTING" ] && return
local mngr_msg
read -r -d '' mngr_msg <<- EOM
Choose a distributed manager type to start a new grid.
install_type=$(whiptail --title "$whiptail_title" --radiolist \
"Choose distributed manager type to start a new grid. See https://docs.securityonion.net/architecture for details." 10 75 2 \
See https://docs.securityonion.net/architecture for details.
Note: MANAGER is the recommended option for most users. MANAGERSEARCH should only be used in very specific situations.
EOM
install_type=$(whiptail --title "$whiptail_title" --radiolist "$mngr_msg" 15 75 2 \
"MANAGER" "New grid, requires separate search node(s) " ON \
"MANAGERSEARCH" "New grid, separate search node(s) are optional " OFF \
3>&1 1>&2 2>&3
@@ -792,9 +800,17 @@ whiptail_install_type_dist_new() {
whiptail_install_type_dist_existing() {
[ -n "$TESTING" ] && return
local node_msg
read -r -d '' node_msg <<- EOM
Choose a distributed node type to join to an existing grid.
install_type=$(whiptail --title "$whiptail_title" --radiolist \
"Choose distributed node type to join to an existing grid. See https://docs.securityonion.net/architecture for details." 14 57 4 \
See https://docs.securityonion.net/architecture for details.
Note: Heavy nodes (HEAVYNODE) are NOT recommended for most users.
EOM
install_type=$(whiptail --title "$whiptail_title" --radiolist "$node_msg" 17 57 4 \
"SENSOR" "Create a forward only sensor " ON \
"SEARCHNODE" "Add a search node with parsing " OFF \
"FLEET" "Dedicated Fleet Osquery Node " OFF \