beaker 7.7.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 +26 -2
- data/lib/beaker/host.rb +1 -1
- data/lib/beaker/platform.rb +4 -2
- data/lib/beaker/version.rb +1 -1
- data/spec/beaker/host_prebuilt_steps_spec.rb +3 -3
- 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,33 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
-
## [7.
|
|
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/v7.
|
|
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)
|
|
16
|
+
|
|
17
|
+
**Implemented enhancements:**
|
|
18
|
+
|
|
19
|
+
- Install iproute for ss for serverspec on Fedora [\#2031](https://github.com/voxpupuli/beaker/pull/2031) ([traylenator](https://github.com/traylenator))
|
|
20
|
+
|
|
21
|
+
**Fixed bugs:**
|
|
22
|
+
|
|
23
|
+
- rsync: improve argument logging [\#2030](https://github.com/voxpupuli/beaker/pull/2030) ([bastelfreak](https://github.com/bastelfreak))
|
|
24
|
+
|
|
25
|
+
## [6.9.0](https://github.com/voxpupuli/beaker/tree/6.9.0) (2026-08-14)
|
|
26
|
+
|
|
27
|
+
[Full Changelog](https://github.com/voxpupuli/beaker/compare/v7.7.0...6.9.0)
|
|
28
|
+
|
|
29
|
+
## [v7.7.0](https://github.com/voxpupuli/beaker/tree/v7.7.0) (2026-08-14)
|
|
30
|
+
|
|
31
|
+
[Full Changelog](https://github.com/voxpupuli/beaker/compare/v7.6.0...v7.7.0)
|
|
8
32
|
|
|
9
33
|
**Implemented enhancements:**
|
|
10
34
|
|
data/lib/beaker/host.rb
CHANGED
|
@@ -544,7 +544,7 @@ module Beaker
|
|
|
544
544
|
# copied into the directory 'to_path'
|
|
545
545
|
from_path += '/' if File.directory?(from_path) and not from_path.end_with?('/')
|
|
546
546
|
|
|
547
|
-
@logger.notify "rsync: localhost:#{from_path} to #{hostname_with_user}:#{to_path} {:ignore => #{opts[:ignore]}}"
|
|
547
|
+
@logger.notify "rsync: localhost:#{from_path} to #{hostname_with_user}:#{to_path} {:ignore => #{opts[:ignore]}} with args: #{rsync_args}"
|
|
548
548
|
result = Rsync.run(from_path, to_path, rsync_args)
|
|
549
549
|
@logger.debug("rsync returned #{result.inspect}")
|
|
550
550
|
|
data/lib/beaker/platform.rb
CHANGED
|
@@ -120,7 +120,7 @@ module Beaker
|
|
|
120
120
|
def base_packages
|
|
121
121
|
case @variant
|
|
122
122
|
when 'el'
|
|
123
|
-
@version.to_i >= 8 ? [
|
|
123
|
+
@version.to_i >= 8 ? %w[iputils rootfiles] : %w[curl]
|
|
124
124
|
when 'debian'
|
|
125
125
|
%w[curl lsb-release]
|
|
126
126
|
when 'freebsd'
|
|
@@ -129,8 +129,10 @@ module Beaker
|
|
|
129
129
|
@version.to_i >= 11 ? %w[curl] : %w[CSWcurl wget]
|
|
130
130
|
when 'archlinux'
|
|
131
131
|
%w[curl net-tools openssh]
|
|
132
|
-
when 'amazon', 'amazonfips'
|
|
132
|
+
when 'amazon', 'amazonfips'
|
|
133
133
|
['iputils']
|
|
134
|
+
when 'fedora'
|
|
135
|
+
%w[iputils iproute]
|
|
134
136
|
when 'aix', 'osx', 'windows'
|
|
135
137
|
[]
|
|
136
138
|
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
|
+
%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
|
|
@@ -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
|
-
['iputils'].each do |pkg|
|
|
335
|
+
['iputils', 'iproute'].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
|