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 +4 -4
- data/CHANGELOG.md +10 -2
- data/lib/beaker/platform.rb +1 -1
- data/lib/beaker/version.rb +1 -1
- data/spec/beaker/host_prebuilt_steps_spec.rb +2 -2
- 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: 64705ecc4d36dfd8388655a14f0e35f897dbbe201fbe7e38c2303dadf4a29d9e
|
|
4
|
+
data.tar.gz: ba6c7790d328b191e9f3cdbee701d570f03fb0faf66f5eb05c9f622dd65d9e76
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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.
|
|
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/
|
|
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
|
|
data/lib/beaker/platform.rb
CHANGED
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
|
+
%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
|
-
[
|
|
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
|