mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2026-02-14 03:03:33 +01:00
Add more whiptail menus
This commit is contained in:
@@ -43,7 +43,42 @@ whiptail_analyst_install() {
|
||||
|
||||
Would you like to join this workstation to an existing grid?
|
||||
|
||||
NOTE: Selecting "no" will enable X Windows and set it to load at boot.
|
||||
EOM
|
||||
whiptail --title "$whiptail_title" \
|
||||
--yesno "$message" 11 75 --defaultno
|
||||
|
||||
}
|
||||
|
||||
whiptail_analyst_nongrid_iso() {
|
||||
|
||||
[ -n "$TESTING" ] && return
|
||||
|
||||
read -r -d '' message <<- EOM
|
||||
|
||||
You have selected this Analyst workstation to be independant.
|
||||
|
||||
Would you still like to have the graphical interface loaded at boot?
|
||||
|
||||
NOTE: Selecting no will exit without making changes.
|
||||
|
||||
EOM
|
||||
whiptail --title "$whiptail_title" \
|
||||
--yesno "$message" 11 75 --defaultno
|
||||
|
||||
}
|
||||
|
||||
whiptail_analyst_nongrid_network() {
|
||||
|
||||
[ -n "$TESTING" ] && return
|
||||
|
||||
read -r -d '' message <<- EOM
|
||||
|
||||
You have selected this Analyst workstation to be independant.
|
||||
|
||||
Would you still like to install and load the graphical interface?
|
||||
|
||||
NOTE: Selecting no will exit without making changes.
|
||||
|
||||
EOM
|
||||
whiptail --title "$whiptail_title" \
|
||||
--yesno "$message" 11 75 --defaultno
|
||||
|
||||
Reference in New Issue
Block a user