diff --git a/salt/firewall/soc_firewall.yaml b/salt/firewall/defaults_soc_firewall.yaml similarity index 94% rename from salt/firewall/soc_firewall.yaml rename to salt/firewall/defaults_soc_firewall.yaml index 614f98190..718cba441 100644 --- a/salt/firewall/soc_firewall.yaml +++ b/salt/firewall/defaults_soc_firewall.yaml @@ -1,4 +1,12 @@ firewall: + custom_groups: + groups: + description: List of group names to create. + multiline: True + forcedType: "[]string" + global: True + title: Custom Firewall Groups + helpLink: firewall.html#host-groups hostgroups: analyst_workstations: description: List of IP addresses or CIDR blocks to allow analyst workstations. diff --git a/setup/so-functions b/setup/so-functions index 64248c30f..be5c7e314 100755 --- a/setup/so-functions +++ b/setup/so-functions @@ -2031,13 +2031,13 @@ saltify() { # THIS IS A TEMP HACK logCmd "dnf -y install securityonion-salt python3-audit python3-libsemanage python3-policycoreutils python3-setools python3-setuptools python3-chardet python3-idna python3-pysocks python3-requests python3-urllib3 python3-websocket-client python3-docker" logCmd "mkdir -p /etc/salt/minion.d" - if [[ $waitforstate ]]; then - # Since this is a salt master so let's install it - logCmd "" - else - # We just need the minion - logCmd "dnf -y install salt-minion" - fi + #if [[ $waitforstate ]]; then + # # Since this is a salt master so let's install it + # logCmd "" + #else + # # We just need the minion + # logCmd "dnf -y install salt-minion" + #fi fi }