We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 99edda5 + 3189c2e commit 97871b3Copy full SHA for 97871b3
acceptance/suites/pre_suite/foss/10_update_ca_certs.rb
@@ -0,0 +1,10 @@
1
+step 'Update CA certs on Centos' do
2
+ hosts.each do |host|
3
+ if host.platform =~ /el/
4
+ on(host, 'yum update -y ca-certificates')
5
+ elsif host.platform =~ /debian|ubuntu/
6
+ on(host, 'apt-get update')
7
+ on(host, 'apt-get install -y ca-certificates libgnutls30')
8
+ end
9
10
+end
0 commit comments