We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 40348ff + 7479b89 commit 5ae42cfCopy full SHA for 5ae42cf
pkg/cidata/cidata.TEMPLATE.d/boot/30-install-packages.sh
@@ -59,7 +59,8 @@ elif command -v dnf >/dev/null 2>&1; then
59
if [ -n "${pkgs}" ]; then
60
dnf_install_flags="-y --setopt=install_weak_deps=False"
61
if grep -q "Oracle Linux Server release 8" /etc/system-release; then
62
- dnf_install_flags="${dnf_install_flags} --enablerepo ol8_baseos_latest --enablerepo ol8_codeready_builder"
+ # repo flag instead of enable repo to reduce metadata syncing on slow Oracle repos
63
+ dnf_install_flags="${dnf_install_flags} --repo ol8_baseos_latest --repo ol8_codeready_builder"
64
elif grep -q "release 8" /etc/system-release; then
65
dnf_install_flags="${dnf_install_flags} --enablerepo powertools"
66
fi
0 commit comments