Don't sync down the repo for airgap

This commit is contained in:
Mike Reeves
2023-05-10 11:07:03 -04:00
parent 8b95edd91a
commit f501fac9cd

View File

@@ -1918,6 +1918,7 @@ securityonion_repo() {
# Remove all the current repos
if [[ $is_rocky ]]; then
logCmd "dnf -v clean all"
logCmd "dnf -y erase rocky-repos"
logCmd "mkdir -vp /root/oldrepos"
logCmd "mv -v /etc/yum.repos.d/* /root/oldrepos/"
logCmd "ls -la /etc/yum.repos.d/"
@@ -1946,11 +1947,13 @@ securityonion_repo() {
logCmd "dnf repolist all"
fi
if [[ $waitforstate ]]; then
if [[ ! is_airgap ]]; then
# Build the repo locally so we can use it
echo "Syncing Repo"
repo_sync_local
fi
fi
fi
}
repo_sync_local() {