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.
1 parent a1f172a commit 6022227Copy full SHA for 6022227
pkg/cidata/cidata.TEMPLATE.d/boot/30-install-packages.sh
@@ -67,6 +67,11 @@ elif command -v dnf >/dev/null 2>&1; then
67
dnf_install_flags="${dnf_install_flags} --repo ol8_baseos_latest --repo ol8_codeready_builder"
68
elif grep -q "release 8" /etc/system-release; then
69
dnf_install_flags="${dnf_install_flags} --enablerepo powertools"
70
+ elif grep -q "release 9" /etc/system-release; then
71
+ # shellcheck disable=SC2086
72
+ dnf install ${dnf_install_flags} epel-release
73
+ dnf config-manager --disable epel >/dev/null 2>&1
74
+ dnf_install_flags="${dnf_install_flags} --enablerepo epel"
75
fi
76
# shellcheck disable=SC2086
77
dnf install ${dnf_install_flags} ${pkgs}
0 commit comments