mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2025-12-20 16:03:06 +01:00
Update dist install menus' top text
This commit is contained in:
@@ -778,9 +778,17 @@ whiptail_install_type_dist() {
|
|||||||
|
|
||||||
whiptail_install_type_dist_new() {
|
whiptail_install_type_dist_new() {
|
||||||
[ -n "$TESTING" ] && return
|
[ -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 \
|
See https://docs.securityonion.net/architecture for details.
|
||||||
"Choose distributed manager type to start a new grid. See https://docs.securityonion.net/architecture for details." 10 75 2 \
|
|
||||||
|
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 \
|
"MANAGER" "New grid, requires separate search node(s) " ON \
|
||||||
"MANAGERSEARCH" "New grid, separate search node(s) are optional " OFF \
|
"MANAGERSEARCH" "New grid, separate search node(s) are optional " OFF \
|
||||||
3>&1 1>&2 2>&3
|
3>&1 1>&2 2>&3
|
||||||
@@ -792,9 +800,17 @@ whiptail_install_type_dist_new() {
|
|||||||
|
|
||||||
whiptail_install_type_dist_existing() {
|
whiptail_install_type_dist_existing() {
|
||||||
[ -n "$TESTING" ] && return
|
[ -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 \
|
See https://docs.securityonion.net/architecture for details.
|
||||||
"Choose distributed node type to join to an existing grid. See https://docs.securityonion.net/architecture for details." 14 57 4 \
|
|
||||||
|
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 \
|
"SENSOR" "Create a forward only sensor " ON \
|
||||||
"SEARCHNODE" "Add a search node with parsing " OFF \
|
"SEARCHNODE" "Add a search node with parsing " OFF \
|
||||||
"FLEET" "Dedicated Fleet Osquery Node " OFF \
|
"FLEET" "Dedicated Fleet Osquery Node " OFF \
|
||||||
|
|||||||
Reference in New Issue
Block a user