Skip to content

Commit

Permalink
Test epel deps
Browse files Browse the repository at this point in the history
  • Loading branch information
hgreebe committed Jun 28, 2024
1 parent 4654dd5 commit 8ec41a8
Showing 1 changed file with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,16 +41,16 @@ def default_packages
alinux_extras_topic topic
end

# bash 'yum install missing deps' do
# user 'root'
# group 'root'
# code <<-REQ
# set -e
# aws s3 cp #{node['cluster']['artifacts_build_url']}/epel/rhel7/#{node['kernel']['machine']}/epel_deps.tar.gz epel_deps.tar.gz --region #{node['cluster']['region']}
# tar xzf epel_deps.tar.gz
# cd epel
# yum remove environment-modules moreutils subunit subunit-devel
# yum install -y *
# REQ
# end
bash 'yum install missing deps' do
user 'root'
group 'root'
code <<-REQ
set -e
aws s3 cp #{node['cluster']['artifacts_build_url']}/epel/rhel7/#{node['kernel']['machine']}/epel_deps.tar.gz epel_deps.tar.gz --region #{node['cluster']['region']}
tar xzf epel_deps.tar.gz
cd epel
yum remove environment-modules moreutils subunit subunit-devel
yum install -y *
REQ
end
end

0 comments on commit 8ec41a8

Please sign in to comment.