beaker-pe 2.11.11 → 2.11.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile +1 -0
- data/lib/beaker-pe/install/pe_utils.rb +2 -2
- data/lib/beaker-pe/version.rb +1 -1
- data/spec/beaker-pe/install/pe_utils_spec.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0ea72482bc472e4a0559e8f1c451de554f2c35c1e88337280c1c5e79b8dbabf1
|
|
4
|
+
data.tar.gz: f07017a866d781a895481347ec738da1e42a1e07fc1d7aeed50945e7cc0f6a02
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 27d77ade9aabcc07859a6aa09e54ce9c7be605e527531dc58f5ed75c1119590de9a0e59aece829d6616db4d0a34cac7e83c5e207ac484d101ca1ce35008b7002
|
|
7
|
+
data.tar.gz: a782f6043fc83b976949c45899ef95914b41b74e5d2515458081c34e91b3cba84455278f24fa9d52c9bade9afa913fa04063c1d41f9ff04e08ed5d63b6e8846b
|
data/Gemfile
CHANGED
|
@@ -15,6 +15,7 @@ end
|
|
|
15
15
|
group :acceptance_testing do
|
|
16
16
|
gem "beaker", *location_for(ENV['BEAKER_VERSION'] || '~> 4.0')
|
|
17
17
|
gem "beaker-vmpooler", *location_for(ENV['BEAKER_VMPOOLER_VERSION'] || '~> 1.3')
|
|
18
|
+
gem "beaker-abs", *location_for(ENV['BEAKER_ABS_VERSION'] || '~> 0.8')
|
|
18
19
|
end
|
|
19
20
|
|
|
20
21
|
gem "scooter", *location_for(ENV['SCOOTER_VERSION'] || '~> 4.3')
|
|
@@ -139,7 +139,7 @@ module Beaker
|
|
|
139
139
|
#Return true if tlsv1 protocol needs to be enforced
|
|
140
140
|
#param [Host] the host
|
|
141
141
|
def require_tlsv1?(host)
|
|
142
|
-
tlsv1_platforms = [/
|
|
142
|
+
tlsv1_platforms = [/el-5/, /solaris-1[0,1]-[i,x]/, /sles-11/,/windows-2008/]
|
|
143
143
|
return tlsv1_platforms.any? {|platform_regex| host['platform'] =~ platform_regex}
|
|
144
144
|
end
|
|
145
145
|
|
|
@@ -211,7 +211,7 @@ module Beaker
|
|
|
211
211
|
end
|
|
212
212
|
if use_puppet_ca_cert
|
|
213
213
|
curl_opts << '--cacert /etc/puppetlabs/puppet/ssl/certs/ca.pem'
|
|
214
|
-
|
|
214
|
+
else
|
|
215
215
|
curl_opts << '-k'
|
|
216
216
|
end
|
|
217
217
|
|
data/lib/beaker-pe/version.rb
CHANGED
|
@@ -263,7 +263,7 @@ describe ClassMixedWithDSLInstallUtils do
|
|
|
263
263
|
expecting = [
|
|
264
264
|
"FRICTIONLESS_TRACE='true'",
|
|
265
265
|
"export FRICTIONLESS_TRACE",
|
|
266
|
-
"cd /tmp && curl -O --tlsv1 https://testmaster:8140/packages/current/install.bash && bash install.bash"
|
|
266
|
+
"cd /tmp && curl -O --tlsv1 -k https://testmaster:8140/packages/current/install.bash && bash install.bash"
|
|
267
267
|
].join("; ")
|
|
268
268
|
|
|
269
269
|
expect( subject.frictionless_agent_installer_cmd( host, {}, '2016.4.0' ) ).to eq(expecting)
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: beaker-pe
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.11.
|
|
4
|
+
version: 2.11.12
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Puppetlabs
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-03-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rspec
|