beaker-hostgenerator 1.11.0 → 1.13.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/test.yml +1 -0
- data/CHANGELOG.md +29 -4
- data/lib/beaker-hostgenerator/data.rb +10 -2
- data/lib/beaker-hostgenerator/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b900e0a42cedfe1bc4356e3f4427ea2be789852460866d51774dd73e3bafefc8
|
4
|
+
data.tar.gz: 54ea9e430741ee3a37f62a6893542c84b11fb747122a359a711289014a284d84
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ee9383ae2be2c5234ee4bfb96504b5219d8f701cd967fc55d4f23be471102c9e895a5afc3fc2145d691cdb18a72df5923b9cd15ef541fd6a0e638e90232ee643
|
7
|
+
data.tar.gz: 0bfb65772bf018e637b73990efcde82fe73bee5f88c3445a356d7144ef6e3e5f626c12877925277b87054376f5a8a15878a862c2ec8fec9492d1315cddabade0
|
data/.github/workflows/test.yml
CHANGED
data/CHANGELOG.md
CHANGED
@@ -2,18 +2,43 @@
|
|
2
2
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
|
5
|
-
## [1.
|
5
|
+
## [1.13.0](https://github.com/voxpupuli/beaker-hostgenerator/tree/1.13.0) (2022-05-25)
|
6
6
|
|
7
|
-
[Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/1.
|
7
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/1.12.0...1.13.0)
|
8
|
+
|
9
|
+
**Merged pull requests:**
|
10
|
+
|
11
|
+
- \(IMAGES-1339\) Add Ubuntu 22.04 support [\#249](https://github.com/voxpupuli/beaker-hostgenerator/pull/249) ([cthorn42](https://github.com/cthorn42))
|
12
|
+
|
13
|
+
## [1.12.0](https://github.com/voxpupuli/beaker-hostgenerator/tree/1.12.0) (2022-02-21)
|
14
|
+
|
15
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/1.11.1...1.12.0)
|
8
16
|
|
9
17
|
**Implemented enhancements:**
|
10
18
|
|
11
|
-
-
|
12
|
-
- Add CentOS 9 support [\#225](https://github.com/voxpupuli/beaker-hostgenerator/pull/225) ([ekohl](https://github.com/ekohl))
|
19
|
+
- \(IMAGES-1334\) Add support for macOS 12 [\#245](https://github.com/voxpupuli/beaker-hostgenerator/pull/245) ([AriaXLi](https://github.com/AriaXLi))
|
13
20
|
|
14
21
|
**Merged pull requests:**
|
15
22
|
|
23
|
+
- Add Ruby 3.1 to CI matrix [\#246](https://github.com/voxpupuli/beaker-hostgenerator/pull/246) ([bastelfreak](https://github.com/bastelfreak))
|
24
|
+
|
25
|
+
## [1.11.1](https://github.com/voxpupuli/beaker-hostgenerator/tree/1.11.1) (2022-02-01)
|
26
|
+
|
27
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/1.11.0...1.11.1)
|
28
|
+
|
29
|
+
**Fixed bugs:**
|
30
|
+
|
31
|
+
- Install hostname on CentOS 8 Stream in docker [\#242](https://github.com/voxpupuli/beaker-hostgenerator/pull/242) ([ekohl](https://github.com/ekohl))
|
32
|
+
|
33
|
+
## [1.11.0](https://github.com/voxpupuli/beaker-hostgenerator/tree/1.11.0) (2022-01-27)
|
34
|
+
|
35
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/1.10.0...1.11.0)
|
36
|
+
|
37
|
+
**Implemented enhancements:**
|
38
|
+
|
39
|
+
- Use CentOS Stream 8 instead of CentOS Linux 8 [\#240](https://github.com/voxpupuli/beaker-hostgenerator/pull/240) ([ekohl](https://github.com/ekohl))
|
16
40
|
- Drop redundant attributes from generated data [\#239](https://github.com/voxpupuli/beaker-hostgenerator/pull/239) ([ekohl](https://github.com/ekohl))
|
41
|
+
- Add CentOS 9 support [\#225](https://github.com/voxpupuli/beaker-hostgenerator/pull/225) ([ekohl](https://github.com/ekohl))
|
17
42
|
|
18
43
|
## [1.10.0](https://github.com/voxpupuli/beaker-hostgenerator/tree/1.10.0) (2021-12-10)
|
19
44
|
|
@@ -103,7 +103,7 @@ module BeakerHostGenerator
|
|
103
103
|
# Ubuntu
|
104
104
|
#
|
105
105
|
# Generate LTS platforms
|
106
|
-
(14..
|
106
|
+
(14..22).select(&:even?).each do |release|
|
107
107
|
# 32 bit support was dropped in Ubuntu 18.04
|
108
108
|
if release < 18
|
109
109
|
result["ubuntu#{release}04-32"] = {
|
@@ -304,7 +304,7 @@ module BeakerHostGenerator
|
|
304
304
|
'image' => 'quay.io/centos/centos:stream8',
|
305
305
|
'docker_image_commands' => [
|
306
306
|
'cp /bin/true /sbin/agetty',
|
307
|
-
'yum install -y crontabs initscripts iproute openssl wget which glibc-langpack-en'
|
307
|
+
'yum install -y crontabs initscripts iproute openssl wget which glibc-langpack-en hostname'
|
308
308
|
]
|
309
309
|
}
|
310
310
|
},
|
@@ -884,6 +884,14 @@ module BeakerHostGenerator
|
|
884
884
|
'template' => 'macos-112-x86_64'
|
885
885
|
}
|
886
886
|
},
|
887
|
+
'osx12-64' => {
|
888
|
+
:general => {
|
889
|
+
'platform' => 'osx-12-x86_64'
|
890
|
+
},
|
891
|
+
:vmpooler => {
|
892
|
+
'template' => 'macos-12-x86_64'
|
893
|
+
}
|
894
|
+
},
|
887
895
|
'redhat4-32' => {
|
888
896
|
:general => {
|
889
897
|
'platform' => 'el-4-i386'
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: beaker-hostgenerator
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.13.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Branan Purvine-Riley
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2022-
|
13
|
+
date: 2022-05-25 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: minitest
|
@@ -208,7 +208,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
208
208
|
- !ruby/object:Gem::Version
|
209
209
|
version: '0'
|
210
210
|
requirements: []
|
211
|
-
rubygems_version: 3.2.
|
211
|
+
rubygems_version: 3.2.33
|
212
212
|
signing_key:
|
213
213
|
specification_version: 4
|
214
214
|
summary: Beaker Host Generator Utility
|