Skip to content

Commit ae0bac9

Browse files
authored
Merge pull request ceph#53849 from dvanders/dvanders_alma
install-deps.sh, do_cmake.sh: almalinux is another el flavour Reviewed-by: John Mulligan <[email protected]>
2 parents 359d20f + 6e85f76 commit ae0bac9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

do_cmake.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ if [ -r /etc/os-release ]; then
2626
PYBUILD="3.11"
2727
fi
2828
;;
29-
rocky|rhel|centos)
29+
almalinux|rocky|rhel|centos)
3030
MAJOR_VER=$(echo "$VERSION_ID" | sed -e 's/\..*$//')
3131
if [ "$MAJOR_VER" -ge "9" ] ; then
3232
PYBUILD="3.9"

install-deps.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -463,14 +463,14 @@ else
463463
$SUDO env DEBIAN_FRONTEND=noninteractive apt-get -y remove ceph-build-deps
464464
if [ "$control" != "debian/control" ] ; then rm $control; fi
465465
;;
466-
rocky|centos|fedora|rhel|ol|virtuozzo)
466+
almalinux|rocky|centos|fedora|rhel|ol|virtuozzo)
467467
builddepcmd="dnf -y builddep --allowerasing"
468468
echo "Using dnf to install dependencies"
469469
case "$ID" in
470470
fedora)
471471
$SUDO dnf install -y dnf-utils
472472
;;
473-
rocky|centos|rhel|ol|virtuozzo)
473+
almalinux|rocky|centos|rhel|ol|virtuozzo)
474474
MAJOR_VERSION="$(echo $VERSION_ID | cut -d. -f1)"
475475
$SUDO dnf install -y dnf-utils selinux-policy-targeted
476476
rpm --quiet --query epel-release || \

0 commit comments

Comments
 (0)