From: John Mulligan Date: Fri, 20 Jun 2025 23:25:53 +0000 (-0400) Subject: install-deps.sh: enable crb for rocky 10 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=ae7878d3c1aae010776ab7079afe213a9725fb1b;p=ceph.git install-deps.sh: enable crb for rocky 10 Rocky Linux 10 has a CRB repo that must be enabled for a number of Ceph's dependencies to be installed via dnf. Signed-off-by: John Mulligan --- diff --git a/install-deps.sh b/install-deps.sh index 01a20df24f72b..5c40be97e8b07 100755 --- a/install-deps.sh +++ b/install-deps.sh @@ -493,6 +493,8 @@ else $SUDO dnf config-manager --set-enabled crb elif test $ID = centos -a $MAJOR_VERSION = 10 ; then $SUDO dnf config-manager --set-enabled crb + elif test $ID = rocky -a $MAJOR_VERSION = 10 ; then + $SUDO dnf config-manager --set-enabled crb elif test $ID = rhel -a $MAJOR_VERSION = 8 ; then dts_ver=11 $SUDO dnf config-manager --set-enabled "codeready-builder-for-rhel-8-${ARCH}-rpms"