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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 928c28e0ae2f5c8aa738b8bc402a9e61cc1392175e15bec5151186a63d565e8d
4
- data.tar.gz: 55e3aabcda095f07e5315e9af08818cc050ea5514cb1409d373fe98b38482942
3
+ metadata.gz: 52b783aa3f96c61732414e7cb0686b4ed61e085c0cf6798eb81a20c646680b04
4
+ data.tar.gz: a053d557c98e4b6e0fe7631c8f1ec057d55cb938c5d63b1ec9e8de5eac06bc5c
5
5
  SHA512:
6
- metadata.gz: e25abfe8061d6566511bda5c51626e9e0e8c33216e77858104f8c300e07c5521ad524f87fade31a6f963ddcf1b595398747ec4a9ef800762e6348a6d919e64c0
7
- data.tar.gz: 1b62bd88a3069e9f0b2c11df340d6d9515620cac2ccdf5ec0e5ff0afefc6ad0a0b94a0e0ea3a87484a058a2c6e21e1cf3f56de2da8b0387f8400c8259e3f7072
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.7.0](https://github.com/voxpupuli/beaker/tree/7.7.0) (2026-08-14)
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/v7.6.0...7.7.0)
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
 
@@ -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', 'fedora'
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
@@ -1,5 +1,5 @@
1
1
  module Beaker
2
2
  module Version
3
- STRING = '7.7.0'
3
+ STRING = '7.8.0'
4
4
  end
5
5
  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
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.7.0
4
+ version: 7.8.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Puppet