beaker 6.8.0 → 6.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: a28ad824ad4e07560f270cface92f77a128b9312fedc0d667bbac78a81d9c175
4
- data.tar.gz: 95c5f36c519f67217cc4e1b559253aa23a5eac9079cb7537f9983897967b5238
3
+ metadata.gz: 569f6e836d92183b8d192a6865f0db91f711fe52235c37a4d3faaf0dbde2daec
4
+ data.tar.gz: 49dd48391cb708a5dd9eb17272c8a84df1658b1263664c185caa8da81592b213
5
5
  SHA512:
6
- metadata.gz: 02e35c0ff08482ad8003b1706360ac1a3699faacf196ace967352538c221621e9e53f08460131f464d8999695f84e7a86e8f2132df275282c56f7fb3d8533468
7
- data.tar.gz: d0fa6e094a65b35868861d49a7ef658a31259a48803c4b08b057cccf4646ebad3bfbf7043ee89f25199f4e63eaa7606d4782eb20079a18be3d76e2807ca81a38
6
+ metadata.gz: a0f60c37aa1325936de181703c981bab351560035cb42b50b9c0789ce39463c655848c7856d4387dac64a4d7dbf1be6b16102447017aec25fb3befe0a7af3b78
7
+ data.tar.gz: b26dc87dbff51e7437594c17a0dfac7dd0287a7e91a5f03070dbb7783f2e32a26d832ce7048a32713aec9d04824aa4b2bc1780a0625b71c1d1dd9cd0ead43142
data/CHANGELOG.md CHANGED
@@ -1,6 +1,14 @@
1
1
  # Changelog
2
2
 
3
- ## [6.8.0](https://github.com/voxpupuli/beaker/tree/6.8.0) (2025-06-14)
3
+ ## [6.8.1](https://github.com/voxpupuli/beaker/tree/6.8.1) (2025-06-16)
4
+
5
+ [Full Changelog](https://github.com/voxpupuli/beaker/compare/6.8.0...6.8.1)
6
+
7
+ **Fixed bugs:**
8
+
9
+ - Use systemd to reload ssh during host prebuilt on RHEL10 [\#1933](https://github.com/voxpupuli/beaker/pull/1933) ([matejzero](https://github.com/matejzero))
10
+
11
+ ## [6.8.0](https://github.com/voxpupuli/beaker/tree/6.8.0) (2025-06-15)
4
12
 
5
13
  [Full Changelog](https://github.com/voxpupuli/beaker/compare/6.7.0...6.8.0)
6
14
 
@@ -328,10 +328,10 @@ module Beaker
328
328
  # restart sshd
329
329
  if /debian|ubuntu/.match?(host['platform'])
330
330
  host.exec(Command.new("sudo su -c \"service ssh restart\""), { :pty => true })
331
- elsif /amazon|arch|(centos|el|redhat)-[789]|fedora/.match?(host['platform'])
332
- host.exec(Command.new("sudo -E systemctl restart sshd.service"), { :pty => true })
333
- elsif /centos|el-|redhat/.match?(host['platform'])
331
+ elsif /(el|centos|redhat|oracle|scientific)-[0-6]\b/.match?(host['platform'])
334
332
  host.exec(Command.new("sudo -E /sbin/service sshd reload"), { :pty => true })
333
+ elsif /amazon|arch|centos|el|redhat|fedora/.match?(host['platform'])
334
+ host.exec(Command.new("sudo -E systemctl restart sshd.service"), { :pty => true })
335
335
  elsif /(free|open)bsd/.match?(host['platform'])
336
336
  host.exec(Command.new("sudo /etc/rc.d/sshd restart"))
337
337
  elsif host['platform'].include?('solaris')
@@ -1,5 +1,5 @@
1
1
  module Beaker
2
2
  module Version
3
- STRING = '6.8.0'
3
+ STRING = '6.8.1'
4
4
  end
5
5
  end
@@ -82,7 +82,7 @@ describe Beaker do
82
82
  ]
83
83
  end
84
84
 
85
- ['centos-9-64', 'el-9-64', 'redhat-9-64', 'fedora-39-64'].each do |redhat_like|
85
+ ['centos-9-64', 'el-9-64', 'el-10-64', 'redhat-9-64', 'redhat-10-64', 'fedora-39-64'].each do |redhat_like|
86
86
  it_behaves_like 'enables_root_login', redhat_like, [
87
87
  "sudo su -c \"sed -ri 's/^#?PermitRootLogin no|^#?PermitRootLogin yes/PermitRootLogin yes/' /etc/ssh/sshd_config\"",
88
88
  "sudo -E systemctl restart sshd.service",
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: 6.8.0
4
+ version: 6.8.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Puppet