beaker-hostgenerator 2.14.1 → 2.14.2
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 +8 -0
- data/lib/beaker-hostgenerator/data.rb +42 -8
- data/lib/beaker-hostgenerator/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 80e535e81b17b0411fff093d184ba4c70dab08a2a834b1a1edd6ee9d1baec4ad
|
4
|
+
data.tar.gz: dee81913855930a3d7dbefb23d0e57940593cba106e8df4bb1fe5b4f645baf03
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 211b7a77ab9dafa8818baeef7372dde1f38533dded1b9bebc10b61031504d04106df9b763afa50afede24b1a5f6a5e46cbc688dafa0589332bd7d81dbdb4b42c
|
7
|
+
data.tar.gz: e9323d193890498a59fb034343f23f95ad2eecfb8f9ad62a13a8779791a25cb3c61f125a9c8c825330429e4df83830588c469d5af5336b3a4aa1230efe3f93a6
|
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.14.2](https://github.com/voxpupuli/beaker-hostgenerator/tree/2.14.2) (2024-07-04)
|
6
|
+
|
7
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/2.14.1...2.14.2)
|
8
|
+
|
9
|
+
**Fixed bugs:**
|
10
|
+
|
11
|
+
- Fix template name for rocky9 and almalinux9 arm [\#380](https://github.com/voxpupuli/beaker-hostgenerator/pull/380) ([daberkow](https://github.com/daberkow))
|
12
|
+
|
5
13
|
## [2.14.1](https://github.com/voxpupuli/beaker-hostgenerator/tree/2.14.1) (2024-06-28)
|
6
14
|
|
7
15
|
[Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/2.14.0...2.14.1)
|
@@ -391,6 +391,48 @@ module BeakerHostGenerator
|
|
391
391
|
'template' => 'redhat-9-arm64',
|
392
392
|
},
|
393
393
|
},
|
394
|
+
'rocky8-64' => {
|
395
|
+
general: {
|
396
|
+
'platform' => 'el-8-x86_64',
|
397
|
+
},
|
398
|
+
},
|
399
|
+
'rocky9-64' => {
|
400
|
+
general: {
|
401
|
+
'platform' => 'el-9-x86_64',
|
402
|
+
},
|
403
|
+
},
|
404
|
+
'rocky9-AARCH64' => {
|
405
|
+
general: {
|
406
|
+
'platform' => 'el-9-aarch64',
|
407
|
+
},
|
408
|
+
abs: {
|
409
|
+
'template' => 'rocky-9-arm64',
|
410
|
+
},
|
411
|
+
vmpooler: {
|
412
|
+
'template' => 'rocky-9-arm64',
|
413
|
+
},
|
414
|
+
},
|
415
|
+
'almalinux8-64' => {
|
416
|
+
general: {
|
417
|
+
'platform' => 'el-8-x86_64',
|
418
|
+
},
|
419
|
+
},
|
420
|
+
'almalinux9-64' => {
|
421
|
+
general: {
|
422
|
+
'platform' => 'el-9-x86_64',
|
423
|
+
},
|
424
|
+
},
|
425
|
+
'almalinux9-AARCH64' => {
|
426
|
+
general: {
|
427
|
+
'platform' => 'el-9-aarch64',
|
428
|
+
},
|
429
|
+
abs: {
|
430
|
+
'template' => 'almalinux-9-arm64',
|
431
|
+
},
|
432
|
+
vmpooler: {
|
433
|
+
'template' => 'almalinux-9-arm64',
|
434
|
+
},
|
435
|
+
},
|
394
436
|
'redhat9-POWER' => {
|
395
437
|
general: {
|
396
438
|
'platform' => 'el-9-ppc64le',
|
@@ -1135,14 +1177,6 @@ module BeakerHostGenerator
|
|
1135
1177
|
yield %w[amazon2023-64 amazon-2023-x86_64]
|
1136
1178
|
yield %w[amazon2023-AARCH64 amazon-2023-aarch64]
|
1137
1179
|
|
1138
|
-
# AlmaLinux and Rocky
|
1139
|
-
%w[almalinux rocky].each do |os|
|
1140
|
-
(8..9).each do |release|
|
1141
|
-
yield ["#{os}#{release}-64", "el-#{release}-x86_64"]
|
1142
|
-
yield ["#{os}#{release}-AARCH64", "el-#{release}-aarch64"]
|
1143
|
-
end
|
1144
|
-
end
|
1145
|
-
|
1146
1180
|
# Oracle / OracleLinux
|
1147
1181
|
yield ['oracle6-32', 'el-6-i386']
|
1148
1182
|
(6..9).each do |release|
|
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: 2.14.
|
4
|
+
version: 2.14.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Branan Purvine-Riley
|
@@ -11,7 +11,7 @@ authors:
|
|
11
11
|
autorequire:
|
12
12
|
bindir: bin
|
13
13
|
cert_chain: []
|
14
|
-
date: 2024-
|
14
|
+
date: 2024-07-04 00:00:00.000000000 Z
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
17
|
name: fakefs
|