Add initial analyst install option to so-setup

This commit is contained in:
Mike Reeves
2022-03-29 10:41:45 -04:00
parent f5095b273d
commit 990470a765
3 changed files with 74 additions and 15 deletions
+17
View File
@@ -33,6 +33,23 @@ whiptail_airgap() {
INTERWEBS=$(echo "${INTERWEBS^^}" | tr -d ' ')
}
whiptail_analyst_install() {
[ -n "$TESTING" ] && return
read -r -d '' message <<- EOM
Welcome to the Security Onion Anaylst Workstation install!
You can choose to use join this workstation to an existing grid for managemnt or make it standalone.
EOM
whiptail --title "$whiptail_title" \
--yesno "$message" 11 75 \
--yes-button "Join" --no-button "Standalone" --defaultno
}
whiptail_avoid_default_hostname() {
[ -n "$TESTING" ] && return