From 26317efe795f3a107a9ce67653547b5d11da6aa2 Mon Sep 17 00:00:00 2001 From: Mike Reeves Date: Thu, 8 Oct 2020 14:05:52 -0400 Subject: [PATCH] Update Soup --- salt/common/tools/sbin/soup | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/salt/common/tools/sbin/soup b/salt/common/tools/sbin/soup index 99532f85f..28b92f0c2 100755 --- a/salt/common/tools/sbin/soup +++ b/salt/common/tools/sbin/soup @@ -83,12 +83,12 @@ check_airgap() { # See if this is an airgap install AIRGAP=$(cat /opt/so/saltstack/local/pillar/global.sls | grep airgap | awk '{print $2}') if [[ "$AIRGAP" == "True" ]]; then - is_airgap=true + is_airgap=0 UPDATE_DIR=/tmp/soagupdate/SecurityOnion AGDOCKER=/tmp/soagupdate/docker AGREPO=/tmp/soagupdate/Packages else - is_airgap=false + is_airgap=1 fi }