beaker 7.8.0 → 7.8.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: 52b783aa3f96c61732414e7cb0686b4ed61e085c0cf6798eb81a20c646680b04
4
- data.tar.gz: a053d557c98e4b6e0fe7631c8f1ec057d55cb938c5d63b1ec9e8de5eac06bc5c
3
+ metadata.gz: 64705ecc4d36dfd8388655a14f0e35f897dbbe201fbe7e38c2303dadf4a29d9e
4
+ data.tar.gz: ba6c7790d328b191e9f3cdbee701d570f03fb0faf66f5eb05c9f622dd65d9e76
5
5
  SHA512:
6
- metadata.gz: 7d9697e57c64cce4cdc74285482f7ba91ad468237f22ea8e1cdc1086310bff1694f3277a99430b5c7c209130779fd0744639358be0ec472efd0e5115ed7c6e16
7
- data.tar.gz: 5368af025c8c9810f63a64ea2517731592586af0f8db8766a04541a80116b1dc7863d5640f6d42b8611f3fd9f32b92f3779d131c4d0d68d3b25b4cca2da3023b
6
+ metadata.gz: 9d1d8a81da7ddc95cae0aee120d936fc5c433bb3eb7132d0f902a8fa35b0876c91495398abdba2a7cd37e230e8e1f788c2418383cf5665ecd59f417a4b400d25
7
+ data.tar.gz: 1926fe23cb90e9a2c8c93a8a8b4ff7fd44e79a273350b9bde338ef82032f6a6b073b4293a44534b83a4fde5d738a6eb963a49d9c3a69225ef164613004954dec
data/CHANGELOG.md CHANGED
@@ -2,9 +2,17 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
- ## [7.8.0](https://github.com/voxpupuli/beaker/tree/7.8.0) (2026-09-02)
5
+ ## [7.8.1](https://github.com/voxpupuli/beaker/tree/7.8.1) (2026-09-04)
6
6
 
7
- [Full Changelog](https://github.com/voxpupuli/beaker/compare/6.9.0...7.8.0)
7
+ [Full Changelog](https://github.com/voxpupuli/beaker/compare/v7.8.0...7.8.1)
8
+
9
+ **Fixed bugs:**
10
+
11
+ - Install rootfiles on EL 8+ hosts [\#2033](https://github.com/voxpupuli/beaker/pull/2033) ([silug](https://github.com/silug))
12
+
13
+ ## [v7.8.0](https://github.com/voxpupuli/beaker/tree/v7.8.0) (2026-09-02)
14
+
15
+ [Full Changelog](https://github.com/voxpupuli/beaker/compare/6.9.0...v7.8.0)
8
16
 
9
17
  **Implemented enhancements:**
10
18
 
@@ -120,7 +120,7 @@ module Beaker
120
120
  def base_packages
121
121
  case @variant
122
122
  when 'el'
123
- @version.to_i >= 8 ? ['iputils'] : %w[curl]
123
+ @version.to_i >= 8 ? %w[iputils rootfiles] : %w[curl]
124
124
  when 'debian'
125
125
  %w[curl lsb-release]
126
126
  when 'freebsd'
@@ -1,5 +1,5 @@
1
1
  module Beaker
2
2
  module Version
3
- STRING = '7.8.0'
3
+ STRING = '7.8.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
- ['iputils'].each do |pkg|
279
+ %w[iputils rootfiles].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
- ['iputils'].each do |pkg|
324
+ %w[iputils rootfiles].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
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: 7.8.0
4
+ version: 7.8.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Puppet