From ba30c59ec7696eeabb1fbb8a1c16bd864323906c Mon Sep 17 00:00:00 2001 From: m0duspwnens Date: Tue, 7 Dec 2021 10:56:35 -0500 Subject: [PATCH] add receiver node --- setup/so-functions | 2 +- setup/so-setup | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/setup/so-functions b/setup/so-functions index 20818aa72..9720cc757 100755 --- a/setup/so-functions +++ b/setup/so-functions @@ -1490,7 +1490,7 @@ get_redirect() { get_minion_type() { local minion_type case "$install_type" in - 'EVAL' | 'MANAGERSEARCH' | 'MANAGER' | 'SENSOR' | 'HEAVYNODE' | 'FLEET' | 'STANDALONE' | 'IMPORT') + 'EVAL' | 'MANAGERSEARCH' | 'MANAGER' | 'SENSOR' | 'HEAVYNODE' | 'FLEET' | 'STANDALONE' | 'IMPORT' | 'RECEIVER') minion_type=$(echo "$install_type" | tr '[:upper:]' '[:lower:]') ;; 'HELIXSENSOR') diff --git a/setup/so-setup b/setup/so-setup index 159367793..9d3701fce 100755 --- a/setup/so-setup +++ b/setup/so-setup @@ -255,6 +255,8 @@ elif [ "$install_type" = 'HELIXSENSOR' ]; then is_helix=true elif [ "$install_type" = 'IMPORT' ]; then is_import=true +elif [ "$install_type" = 'RECEIVER' ]; then + is_minion=true elif [ "$install_type" = 'ANALYST' ]; then cd .. || exit 255 exec bash so-analyst-install