From 6e69ba1693af03b66123b073433d39204a1fd3f7 Mon Sep 17 00:00:00 2001 From: Oleksandr Miroshnychenko Date: Sun, 13 Jul 2025 21:39:53 +0300 Subject: [PATCH] PKG-731 pbm: add OL10 support --- packaging/scripts/mongodb-backup_builder.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/packaging/scripts/mongodb-backup_builder.sh b/packaging/scripts/mongodb-backup_builder.sh index 30b0bb82e..ceec7443f 100644 --- a/packaging/scripts/mongodb-backup_builder.sh +++ b/packaging/scripts/mongodb-backup_builder.sh @@ -174,8 +174,11 @@ install_deps() { if [ "x$OS" = "xrpm" ]; then yum clean all + if [ "x$RHEL" = "x10" ]; then + yum -y install oracle-epel-release-el10 + fi INSTALL_LIST="epel-release git wget" - if [ "x$RHEL" = "x2023" ]; then + if [ "x$RHEL" = "x2023" -o "x$RHEL" = "x10" ]; then INSTALL_LIST="git wget" fi yum -y install ${INSTALL_LIST}