From 77cbf35625071f1f89d7d904ea128f1a811bef54 Mon Sep 17 00:00:00 2001 From: Mike Reeves Date: Fri, 5 May 2023 11:26:10 -0400 Subject: [PATCH] Update so-functions --- setup/so-functions | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup/so-functions b/setup/so-functions index cf6bb83ab..8b361597b 100755 --- a/setup/so-functions +++ b/setup/so-functions @@ -2289,11 +2289,11 @@ set_initial_firewall_policy() { set_initial_firewall_access() { if [[ ! -z "$ALLOW_CIDR" ]]; then - $default_salt_dir/salt/common/tools/sbin/so-firewall includehost analyst $ALLOW_CIDR --apply + so-firewall includehost analyst $ALLOW_CIDR --apply fi if [[ ! -z "$MINION_CIDR" ]]; then - $default_salt_dir/salt/common/tools/sbin/so-firewall includehost sensors $MINION_CIDR - $default_salt_dir/salt/common/tools/sbin/so-firewall includehost searchnodes $MINION_CIDR --apply + so-firewall includehost sensors $MINION_CIDR + so-firewall includehost searchnodes $MINION_CIDR --apply fi }