beaker 7.7.0 → 7.8.0
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 +18 -2
- data/lib/beaker/host.rb +1 -1
- data/lib/beaker/platform.rb +3 -1
- data/lib/beaker/version.rb +1 -1
- data/spec/beaker/host_prebuilt_steps_spec.rb +1 -1
- 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: 52b783aa3f96c61732414e7cb0686b4ed61e085c0cf6798eb81a20c646680b04
|
|
4
|
+
data.tar.gz: a053d557c98e4b6e0fe7631c8f1ec057d55cb938c5d63b1ec9e8de5eac06bc5c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7d9697e57c64cce4cdc74285482f7ba91ad468237f22ea8e1cdc1086310bff1694f3277a99430b5c7c209130779fd0744639358be0ec472efd0e5115ed7c6e16
|
|
7
|
+
data.tar.gz: 5368af025c8c9810f63a64ea2517731592586af0f8db8766a04541a80116b1dc7863d5640f6d42b8611f3fd9f32b92f3779d131c4d0d68d3b25b4cca2da3023b
|
data/CHANGELOG.md
CHANGED
|
@@ -2,9 +2,25 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
-
## [7.
|
|
5
|
+
## [7.8.0](https://github.com/voxpupuli/beaker/tree/7.8.0) (2026-09-02)
|
|
6
6
|
|
|
7
|
-
[Full Changelog](https://github.com/voxpupuli/beaker/compare/
|
|
7
|
+
[Full Changelog](https://github.com/voxpupuli/beaker/compare/6.9.0...7.8.0)
|
|
8
|
+
|
|
9
|
+
**Implemented enhancements:**
|
|
10
|
+
|
|
11
|
+
- Install iproute for ss for serverspec on Fedora [\#2031](https://github.com/voxpupuli/beaker/pull/2031) ([traylenator](https://github.com/traylenator))
|
|
12
|
+
|
|
13
|
+
**Fixed bugs:**
|
|
14
|
+
|
|
15
|
+
- rsync: improve argument logging [\#2030](https://github.com/voxpupuli/beaker/pull/2030) ([bastelfreak](https://github.com/bastelfreak))
|
|
16
|
+
|
|
17
|
+
## [6.9.0](https://github.com/voxpupuli/beaker/tree/6.9.0) (2026-08-14)
|
|
18
|
+
|
|
19
|
+
[Full Changelog](https://github.com/voxpupuli/beaker/compare/v7.7.0...6.9.0)
|
|
20
|
+
|
|
21
|
+
## [v7.7.0](https://github.com/voxpupuli/beaker/tree/v7.7.0) (2026-08-14)
|
|
22
|
+
|
|
23
|
+
[Full Changelog](https://github.com/voxpupuli/beaker/compare/v7.6.0...v7.7.0)
|
|
8
24
|
|
|
9
25
|
**Implemented enhancements:**
|
|
10
26
|
|
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
|
@@ -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
|
@@ -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
|