mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2025-12-06 09:12:45 +01:00
92 lines
3.4 KiB
Bash
Executable File
92 lines
3.4 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# Copyright 2014-2022 Security Onion Solutions, LLC
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
doc_workstation_url="https://docs.securityonion.net/en/2.3/analyst-vm.html"
|
|
{# we only want the script to install the workstation if it is CentOS -#}
|
|
{% if grains.os == 'CentOS' -%}
|
|
{# if this is a manager -#}
|
|
{% if grains.master == grains.id.split('_')|first -%}
|
|
|
|
source /usr/sbin/so-common
|
|
pillar_file="/opt/so/saltstack/local/pillar/minions/{{grains.id}}.sls"
|
|
|
|
if [ -f "$pillar_file" ]; then
|
|
if ! grep -q "^workstation:$" "$pillar_file"; then
|
|
|
|
FIRSTPASS=yes
|
|
while [[ $INSTALL != "yes" ]] && [[ $INSTALL != "no" ]]; do
|
|
if [[ "$FIRSTPASS" == "yes" ]]; then
|
|
echo "###########################################"
|
|
echo "## ** W A R N I N G ** ##"
|
|
echo "## _______________________________ ##"
|
|
echo "## ##"
|
|
echo "## Installing the Security Onion ##"
|
|
echo "## analyst node on this device will ##"
|
|
echo "## make permanent changes to ##"
|
|
echo "## the system. ##"
|
|
echo "## ##"
|
|
echo "###########################################"
|
|
echo "Do you wish to continue? (Type the entire word 'yes' to proceed or 'no' to exit)"
|
|
FIRSTPASS=no
|
|
else
|
|
echo "Please type 'yes' to continue or 'no' to exit."
|
|
fi
|
|
read INSTALL
|
|
done
|
|
|
|
if [[ $INSTALL == "no" ]]; then
|
|
echo "Exiting analyst node installation."
|
|
exit 0
|
|
fi
|
|
|
|
# Add workstation pillar to the minion's pillar file
|
|
printf '%s\n'\
|
|
"workstation:"\
|
|
" gui:"\
|
|
" enabled: true"\
|
|
"" >> "$pillar_file"
|
|
echo "Applying the workstation state. This could take some time since there are many packages that need to be installed."
|
|
salt-call state.apply workstation -linfo queue=True
|
|
echo ""
|
|
echo "Analyst workstation has been installed!"
|
|
else # workstation is already added
|
|
echo "The workstation pillar already exists in $pillar_file."
|
|
echo "To enable/disable the gui, set 'workstation:gui:enabled' to true or false in $pillar_file."
|
|
echo "Additional documentation can be found at $doc_workstation_url."
|
|
fi
|
|
else # if the pillar file doesn't exist
|
|
echo "Could not find $pillar_file and add the workstation pillar."
|
|
fi
|
|
|
|
{#- if this is not a manager #}
|
|
{% else -%}
|
|
|
|
echo "Since this is not a manager, the pillar values to enable analyst workstation must be set manually. Please view the documention at $doc_workstation_url."
|
|
|
|
{#- endif if this is a manager #}
|
|
{% endif -%}
|
|
|
|
{#- if not CentOS #}
|
|
{%- else %}
|
|
|
|
echo "The Analyst Workstation can only be installed on CentOS. Please view the documention at $doc_workstation_url."
|
|
|
|
{#- endif grains.os == CentOS #}
|
|
{% endif -%}
|
|
|
|
exit 0
|