Added Production Mode

This commit is contained in:
Mike Reeves
2020-05-06 14:27:34 -04:00
parent 72ea577c70
commit 80aca60477
2 changed files with 7 additions and 1 deletions

View File

@@ -62,6 +62,11 @@ if [ "$install_type" = 'EVAL' ]; then
is_master=true
is_sensor=true
is_eval=true
elif [ "$install_type" = 'PROD' ]; then
is_master=true
is_distmaster=true
is_node=true
is_sensor=true
elif [ "$install_type" = 'MASTERSEARCH' ]; then
is_master=true
is_distmaster=true

View File

@@ -390,6 +390,7 @@ whiptail_install_type() {
"SEARCHNODE" "Add a Search Node with parsing" OFF \
"MASTER" "Start a new grid" OFF \
"EVAL" "Evaluate all the things" OFF \
"PROD" "Standalone full install of everything" OFF \
"MASTERSEARCH" "Master + Search Node" OFF \
"HEAVYNODE" "Sensor + Search Node" OFF \
"HELIXSENSOR" "Connect this sensor to FireEye Helix" OFF \