beaker 6.4.0 → 6.4.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1a02ef74d16885231f54a0de64150eba5ff7cfa6bc944c8e31e833dbeb6ebf0c
4
- data.tar.gz: 314c9cba9fc50a0966f3bd4d49624041eac4b25dea6dd46cd0e85e1781a95577
3
+ metadata.gz: 743599fd9c51c9174f9a69e8eeb78d93454f09301be04a4e7125dec169303b37
4
+ data.tar.gz: 1c22c0da86003c04c7bd3a6832b5777aa6e45c46d9b02239ac5959e8143b2b9f
5
5
  SHA512:
6
- metadata.gz: da309a092cffe2872e0927d5d304d1beb62a618f0c5c223e2cefc723ac3edb7473a3b3ab42f5e3682af2f75a622e158e150258126d0528453e80d1960d7aee3b
7
- data.tar.gz: cacc9f2b9679f618c71eda3c4f8de1960f476fb9bbe155a3577a1e7a22cd92d3be9753fc251ac0b7db4e36e214b4da69b4a4cb6c42812aed6f5791d0e9e7fba5
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:**
@@ -118,9 +118,9 @@ module Beaker
118
118
  def base_packages
119
119
  case @variant
120
120
  when 'el'
121
- @version.to_i >= 8 ? ['curl-minimal', 'iputils'] : %w[curl]
121
+ @version.to_i >= 8 ? ['iputils'] : %w[curl]
122
122
  when 'debian'
123
- %w[curl lsb-release apt-transport-https]
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
- ['curl-minimal', 'iputils']
131
+ ['iputils']
132
132
  when 'aix', 'osx', 'windows'
133
133
  []
134
134
  else
@@ -1,5 +1,5 @@
1
1
  module Beaker
2
2
  module Version
3
- STRING = '6.4.0'
3
+ STRING = '6.4.1'
4
4
  end
5
5
  end
@@ -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
- ['curl-minimal', 'iputils'].each do |pkg|
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
- ['curl-minimal', 'iputils'].each do |pkg|
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
- ['curl-minimal', 'iputils'].each do |pkg|
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
- ['curl-minimal', 'iputils'].each do |pkg|
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
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: beaker
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.4.0
4
+ version: 6.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Puppet