beaker 6.4.0 → 6.4.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/lib/beaker/platform.rb +3 -3
- data/lib/beaker/version.rb +1 -1
- data/spec/beaker/host_prebuilt_steps_spec.rb +4 -4
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 743599fd9c51c9174f9a69e8eeb78d93454f09301be04a4e7125dec169303b37
|
4
|
+
data.tar.gz: 1c22c0da86003c04c7bd3a6832b5777aa6e45c46d9b02239ac5959e8143b2b9f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 578b26052fd432404d2c564f970758191803f5f9bedda58c186ccf241b5e77257c232e9eea0783e08bc9fd973fd9250891e93a310f7aa8327dbbea2aa947ff03
|
7
|
+
data.tar.gz: 42140d421e592015b7eae2a6c4f3c2c5bda26d364d8af8afc9b5b0bd4f0c3e7a21bec6124d065d98c82f05111ad069c7b04627215614ca377f5c2aafcafb187c
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,11 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## [6.4.1](https://github.com/voxpupuli/beaker/tree/6.4.1) (2024-08-27)
|
4
|
+
|
5
|
+
**Fixed bugs:**
|
6
|
+
|
7
|
+
- platform: don't install curl-minimal on EL family [\#1902](https://github.com/voxpupuli/beaker/pull/1902)
|
8
|
+
|
3
9
|
## [6.4.0](https://github.com/voxpupuli/beaker/tree/6.4.0) (2024-08-27)
|
4
10
|
|
5
11
|
**Implemented enhancements:**
|
data/lib/beaker/platform.rb
CHANGED
@@ -118,9 +118,9 @@ module Beaker
|
|
118
118
|
def base_packages
|
119
119
|
case @variant
|
120
120
|
when 'el'
|
121
|
-
@version.to_i >= 8 ? ['
|
121
|
+
@version.to_i >= 8 ? ['iputils'] : %w[curl]
|
122
122
|
when 'debian'
|
123
|
-
%w[curl lsb-release
|
123
|
+
%w[curl lsb-release]
|
124
124
|
when 'freebsd'
|
125
125
|
%w[curl perl5|perl]
|
126
126
|
when 'solaris'
|
@@ -128,7 +128,7 @@ module Beaker
|
|
128
128
|
when 'archlinux'
|
129
129
|
%w[curl net-tools openssh]
|
130
130
|
when 'amazon', 'fedora'
|
131
|
-
['
|
131
|
+
['iputils']
|
132
132
|
when 'aix', 'osx', 'windows'
|
133
133
|
[]
|
134
134
|
else
|
data/lib/beaker/version.rb
CHANGED
@@ -276,7 +276,7 @@ describe Beaker do
|
|
276
276
|
it "can validate el-9 hosts" do
|
277
277
|
host = make_host('host', { :platform => 'el-9-64' })
|
278
278
|
|
279
|
-
['
|
279
|
+
['iputils'].each do |pkg|
|
280
280
|
expect(host).to receive(:check_for_package).with(pkg).once.and_return(false)
|
281
281
|
expect(host).to receive(:install_package).with(pkg).once
|
282
282
|
end
|
@@ -321,7 +321,7 @@ describe Beaker do
|
|
321
321
|
it "can validate RHEL8 hosts" do
|
322
322
|
host = make_host('host', { :platform => 'el-8-64' })
|
323
323
|
|
324
|
-
['
|
324
|
+
['iputils'].each do |pkg|
|
325
325
|
expect(host).to receive(:check_for_package).with(pkg).once.and_return(false)
|
326
326
|
expect(host).to receive(:install_package).with(pkg).once
|
327
327
|
end
|
@@ -332,7 +332,7 @@ describe Beaker do
|
|
332
332
|
it "can validate Fedora hosts" do
|
333
333
|
host = make_host('host', { :platform => 'fedora-32-x86_64' })
|
334
334
|
|
335
|
-
['
|
335
|
+
['iputils'].each do |pkg|
|
336
336
|
expect(host).to receive(:check_for_package).with(pkg).once.and_return(false)
|
337
337
|
expect(host).to receive(:install_package).with(pkg).once
|
338
338
|
end
|
@@ -343,7 +343,7 @@ describe Beaker do
|
|
343
343
|
it "can validate Amazon hosts" do
|
344
344
|
host = make_host('host', { :platform => 'amazon-2023-x86_64' })
|
345
345
|
|
346
|
-
['
|
346
|
+
['iputils'].each do |pkg|
|
347
347
|
expect(host).to receive(:check_for_package).with(pkg).once.and_return(false)
|
348
348
|
expect(host).to receive(:install_package).with(pkg).once
|
349
349
|
end
|