Skip to content

Commit cd5f5d8

Browse files
committed
Install http-parser
1 parent 1ef1237 commit cd5f5d8

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

cookbooks/aws-parallelcluster-shared/resources/package_repos/package_repos_alinux2023.rb

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,14 @@
2424
action :setup do
2525
include_recipe 'yum'
2626
# include_recipe "yum-epel"
27+
execute 'yum-config-manager-rhel' do
28+
# Needed by hwloc-devel blas-devel libedit-devel and glibc-static packages
29+
command "yum-config-manager --enable codeready-builder-for-rhel-9-rhui-rpms"
30+
end unless on_docker?
31+
32+
execute 'yum-config-manager_skip_if_unavail' do
33+
command "yum-config-manager --setopt=\*.skip_if_unavailable=1 --save"
34+
end
2735

2836
# package 'yum-utils' do
2937
# retries 3

cookbooks/aws-parallelcluster-slurm/resources/slurm_dependencies/slurm_dependencies_alinux2023.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
use 'partial/_slurm_dependencies_common'
1616

1717
def dependencies
18-
%w(json-c-devel perl perl-Switch lua-devel dbus-devel llhttp)
18+
%w(json-c-devel perl perl-Switch lua-devel dbus-devel http-parser-devel)
1919
end
2020

2121
action :install_extra_dependencies do

0 commit comments

Comments
 (0)