From a25acb45581a81af30f36b6b5e6cc27a9bbfe8dc Mon Sep 17 00:00:00 2001 From: Mike Reeves Date: Fri, 24 Feb 2023 12:19:57 -0500 Subject: [PATCH] comment out minion installs for now --- setup/so-functions | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) 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 }