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 +4 -4
- data/CHANGELOG.md +9 -1
- data/lib/beaker/host_prebuilt_steps.rb +3 -3
- 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: 569f6e836d92183b8d192a6865f0db91f711fe52235c37a4d3faaf0dbde2daec
|
4
|
+
data.tar.gz: 49dd48391cb708a5dd9eb17272c8a84df1658b1263664c185caa8da81592b213
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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.
|
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 /
|
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')
|
data/lib/beaker/version.rb
CHANGED
@@ -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",
|