Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PKG-339 psmdb.cd: fix pbm build deps installation #1071

Merged
merged 1 commit into from
Dec 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion packaging/scripts/mongodb-backup_builder.sh
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,11 @@ install_deps() {

if [ "x$OS" = "xrpm" ]; then
yum clean all
yum -y install epel-release git wget
INSTALL_LIST="epel-release git wget"
if [ "x$RHEL" = "x2023" ]; then
INSTALL_LIST="git wget"
fi
yum -y install ${INSTALL_LIST}
yum -y install rpm-build make rpmlint rpmdevtools golang krb5-devel
install_golang
else
Expand Down
Loading