beaker-hostgenerator 2.2.1 → 2.2.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/beaker-hostgenerator/hypervisor/docker.rb +1 -1
- data/lib/beaker-hostgenerator/version.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: 93ed6dbbd9d25d946d16120fa33f862ce17fef626f20929e32833c053763f564
|
4
|
+
data.tar.gz: 5b615776e072662675ec1c6f27ad433257ed941de43d75fc73ac371af041d350
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8cf058c89d83f556cb8c7dddd3e29ccdecf115e335faf57b2c870630cbab1ff1f1c3fd17be1417350729b5b74ba0fec080194d9067ecdc17c0a5271e71627ba0
|
7
|
+
data.tar.gz: 48b9975c3cbce170ef22160dff4de8fec6d6390c96f3965a218242e527a0586f5e98701c960d5771d7a5ba45e6c4f21c69fe36e1da29395ffb7213b1cf76c8e4
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,14 @@
|
|
2
2
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
|
5
|
+
## [2.2.2](https://github.com/voxpupuli/beaker-hostgenerator/tree/2.2.2) (2023-07-27)
|
6
|
+
|
7
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/2.2.1...2.2.2)
|
8
|
+
|
9
|
+
**Fixed bugs:**
|
10
|
+
|
11
|
+
- Fix typo in yum command [\#315](https://github.com/voxpupuli/beaker-hostgenerator/pull/315) ([smortex](https://github.com/smortex))
|
12
|
+
|
5
13
|
## [2.2.1](https://github.com/voxpupuli/beaker-hostgenerator/tree/2.2.1) (2023-07-27)
|
6
14
|
|
7
15
|
[Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/2.2.0...2.2.1)
|
@@ -79,7 +79,7 @@ module BeakerHostGenerator
|
|
79
79
|
if version >= 8
|
80
80
|
'dnf install -y crontabs initscripts iproute openssl wget which glibc-langpack-en hostname'
|
81
81
|
else
|
82
|
-
'yum
|
82
|
+
'yum install -y crontabs initscripts iproute openssl wget which sysvinit-tools tar ss'
|
83
83
|
end
|
84
84
|
end
|
85
85
|
end
|