Skip to content

Commit 6894408

Browse files
committed
UNSTABLE remove openssl11-devel to avoid conflicts.
1 parent 625b2ab commit 6894408

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

cookbooks/aws-parallelcluster-platform/resources/install_packages/install_packages_amazon2.rb

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,3 +68,14 @@ def default_packages
6868
end
6969
end
7070
end
71+
72+
action :remove_packages do
73+
%(openssl11-devel).each do |p|
74+
package p do
75+
action 'remove'
76+
retries 10
77+
retry_delay 5
78+
flush_cache({ before: true })
79+
end
80+
end
81+
end

cookbooks/aws-parallelcluster-platform/resources/install_packages/partial/_install_packages_common.rb

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,12 @@
3838
# nothing
3939
end
4040

41+
action :remove_packages do
42+
# nothing
43+
end
44+
4145
action :setup do
46+
action_remove_packages
4247
action_install_extras
4348
action_install_kernel_source
4449
action_install_base_packages

0 commit comments

Comments
 (0)