Remove distributed verbiage from other node option in so-whiptail

This commit is contained in:
Doug Burks
2022-04-18 07:53:57 -04:00
committed by GitHub
parent 62f3f13bbc
commit 400879c079

View File

@@ -936,14 +936,14 @@ whiptail_install_type_other() {
# so only show it on network installs for now
if [[ $setup_type == 'network' ]]; then
install_type=$(whiptail --title "$whiptail_title" --radiolist \
"Choose distributed node type:" 9 65 2 \
"Choose node type:" 9 65 2 \
"ANALYST" "Setup will run 'so-setup analyst' " ON \
"HELIXSENSOR" "Create a Helix sensor " OFF \
3>&1 1>&2 2>&3
)
else
install_type=$(whiptail --title "$whiptail_title" --radiolist \
"Choose distributed node type:" 8 65 1 \
"Choose node type:" 8 65 1 \
"HELIXSENSOR" "Create a Helix sensor " ON \
3>&1 1>&2 2>&3
)