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