beaker-hostgenerator 2.9.0 → 2.9.1
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2145b83d2e15cdd6d2a18eb95eab96355800a2362cee925313589b5d166e7c16
|
4
|
+
data.tar.gz: 6eba387dac461e0c7b31ef6bfadc64e5bc42801683ecc5313238a1c22ea58dd8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a7879d38086005f3b9bdb30b3304c7c1f0376d0ad7130e7aaf9972075eb184c74b1166d386f4ba51369e40c5d926d602eacff7140a55b785c38249efc51ace90
|
7
|
+
data.tar.gz: 9f970a8976523e4df0e0f716c9a7d8bc74920d4a71379bf8028a24b99c40d4f8ba6693a3ce962839b464013169c3fb0bd4a4ca32294dce5599c78bec2bbbf587
|
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.9.1](https://github.com/voxpupuli/beaker-hostgenerator/tree/2.9.1) (2024-01-24)
|
6
|
+
|
7
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/2.9.0...2.9.1)
|
8
|
+
|
9
|
+
**Fixed bugs:**
|
10
|
+
|
11
|
+
- Pull correct vagrant boxes for AlmaLinux [\#351](https://github.com/voxpupuli/beaker-hostgenerator/pull/351) ([traylenator](https://github.com/traylenator))
|
12
|
+
- Fix rhel9 power ABS name [\#350](https://github.com/voxpupuli/beaker-hostgenerator/pull/350) ([nmburgan](https://github.com/nmburgan))
|
13
|
+
|
5
14
|
## [2.9.0](https://github.com/voxpupuli/beaker-hostgenerator/tree/2.9.0) (2023-11-27)
|
6
15
|
|
7
16
|
[Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/2.8.2...2.9.0)
|
@@ -8,9 +8,10 @@ module BeakerHostGenerator
|
|
8
8
|
include BeakerHostGenerator::Data
|
9
9
|
|
10
10
|
def generate_node(node_info, base_config, bhg_version)
|
11
|
-
base_config['box'] =
|
11
|
+
base_config['box'] = case node_info['ostype']
|
12
|
+
when /^centos/, /^almalinux/
|
12
13
|
node_info['ostype'].sub(/(\d)/, '/\1')
|
13
|
-
|
14
|
+
when /^fedora/
|
14
15
|
node_info['ostype'].sub(/(\d)/, '/\1') + '-cloud-base'
|
15
16
|
else
|
16
17
|
"generic/#{node_info['ostype']}"
|
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.9.
|
4
|
+
version: 2.9.1
|
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:
|
14
|
+
date: 2024-01-24 00:00:00.000000000 Z
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
17
|
name: fakefs
|