beaker-hostgenerator 2.4.0 → 2.5.0
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 -0
- data/lib/beaker-hostgenerator/data.rb +4 -1
- data/lib/beaker-hostgenerator/hypervisor/abs.rb +1 -1
- 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: 7b52d38a0594435ebf51c4bd03d67a7671a1d90ba47ac60ec8f408792da1564e
|
|
4
|
+
data.tar.gz: 825344e22b2dcd864e1c2f612eb924f3e2fe3eef71050788cb019422fc51d6b0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: de5dd73d4a194cf3386af3a48f042a52c1b76e24b5b096e24172f89500772bebe5af1e7740f73a381fc0467f31291f496568fd8fa4ab2b7119da334446009f2a
|
|
7
|
+
data.tar.gz: 49a37f224ed30d6f5506bced2c290de626157041151bee6bc4ddcd31b22bea4770e96aed5922c80b88a4533a203b7204dd51bdfed2d31c599560f494e8f243bc
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [2.5.0](https://github.com/voxpupuli/beaker-hostgenerator/tree/2.5.0) (2023-09-25)
|
|
6
|
+
|
|
7
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/2.4.0...2.5.0)
|
|
8
|
+
|
|
9
|
+
**Implemented enhancements:**
|
|
10
|
+
|
|
11
|
+
- Add amazon-2023-x86\_64 [\#333](https://github.com/voxpupuli/beaker-hostgenerator/pull/333) ([yachub](https://github.com/yachub))
|
|
12
|
+
- Add fedora-37-x86\_64 and fedora-38-x86\_64 [\#332](https://github.com/voxpupuli/beaker-hostgenerator/pull/332) ([yachub](https://github.com/yachub))
|
|
13
|
+
|
|
5
14
|
## [2.4.0](https://github.com/voxpupuli/beaker-hostgenerator/tree/2.4.0) (2023-09-12)
|
|
6
15
|
|
|
7
16
|
[Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/2.3.0...2.4.0)
|
|
@@ -1067,7 +1067,7 @@ module BeakerHostGenerator
|
|
|
1067
1067
|
# @api private
|
|
1068
1068
|
def generate_osinfo
|
|
1069
1069
|
# Fedora
|
|
1070
|
-
(19..
|
|
1070
|
+
(19..38).each do |release|
|
|
1071
1071
|
# 32 bit support was dropped in Fedora 31
|
|
1072
1072
|
yield ["fedora#{release}-32", "fedora-#{release}-i386"] if release < 31
|
|
1073
1073
|
|
|
@@ -1098,6 +1098,9 @@ module BeakerHostGenerator
|
|
|
1098
1098
|
yield ["freebsd#{release}-64", "freebsd-#{release}-amd64"]
|
|
1099
1099
|
end
|
|
1100
1100
|
|
|
1101
|
+
# Amazon Linux
|
|
1102
|
+
yield %w[amazon2023-64 amazon-2023-x86_64]
|
|
1103
|
+
|
|
1101
1104
|
# AlmaLinux and Rocky
|
|
1102
1105
|
%w[almalinux rocky].each do |os|
|
|
1103
1106
|
(8..9).each do |release|
|
|
@@ -25,7 +25,7 @@ module BeakerHostGenerator
|
|
|
25
25
|
case node_info['ostype']
|
|
26
26
|
when /^(almalinux|centos|oracle|redhat|rocky|scientific)/
|
|
27
27
|
base_config['template'] ||= base_config['platform'].gsub(/^el/, ::Regexp.last_match(1))
|
|
28
|
-
when /^fedora/, /^opensuse/, /^panos/
|
|
28
|
+
when /^amazon/, /^fedora/, /^opensuse/, /^panos/
|
|
29
29
|
base_config['template'] ||= base_config['platform']
|
|
30
30
|
when /^(debian|ubuntu)/
|
|
31
31
|
os = Regexp.last_match(1)
|
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.
|
|
4
|
+
version: 2.5.0
|
|
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: 2023-09-
|
|
14
|
+
date: 2023-09-25 00:00:00.000000000 Z
|
|
15
15
|
dependencies:
|
|
16
16
|
- !ruby/object:Gem::Dependency
|
|
17
17
|
name: fakefs
|