From 341ff5b56436289ca9614c08dea10134d222f239 Mon Sep 17 00:00:00 2001 From: Mike Reeves Date: Wed, 31 Jan 2024 16:18:51 -0500 Subject: [PATCH] Update so-functions --- setup/so-functions | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/setup/so-functions b/setup/so-functions index d19f27620..46bb0b4b2 100755 --- a/setup/so-functions +++ b/setup/so-functions @@ -1933,7 +1933,11 @@ saltify() { logCmd "dnf -y install salt-$SALTVERSION salt-master-$SALTVERSION salt-minion-$SALTVERSION" else # We just need the minion - logCmd "dnf -y install salt-$SALTVERSION salt-minion-$SALTVERSION" + if [[ $is_airgap ]]; then + logCmd "dnf -y install salt salt-minion" + else + logCmd "dnf -y install salt-$SALTVERSION salt-minion-$SALTVERSION" + fi fi fi