beaker-hostgenerator 2.8.0 → 2.8.2

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: 42882c9eb36079b2db78e76c7a740cf9ad2cf267c87e9b96506ce1dec4c26aab
4
- data.tar.gz: de4e7feafaa69486885fce7682fd782bbfecfa9a882653e9eebec9d49abb181b
3
+ metadata.gz: b9fad3c56e1d05f923bcf135382ab28d9d311ce5e67a677c5b50c960098bf395
4
+ data.tar.gz: 1db27bb8a50f5bad1037867c93c3b82a84a95c73cb89ec9a9a034dd12dac486d
5
5
  SHA512:
6
- metadata.gz: 816969ae29d7492aebecdcfb734b42b07f840e76ae42d7115cb46e2b292075dce151ca56dc9abea2d465d21c53c0fc56f181ef9f8bbc18ad2078168232575912
7
- data.tar.gz: 15762982530946bee0ddfebd2bc57962ed381f04c4b8e4744879763f52e057b688cc68e12afbc7c188c720421f29d419adb016cacb5998c43dafe569b9e9d9d1
6
+ metadata.gz: f99a3dad7b2c3a5ea6fe9a0353f1c9cb7e7873bf6f424ea7eebd0822c9310b837f52d0a470b6cc63152d22a46ef2ffcec2aa596aa94ff629d523ccb49663787b
7
+ data.tar.gz: bb37719f3953c746bce408f6aaf6099c9b949d913230d14af345fcb0247b6136edb1ccd6516647a277b06cd6933542f5905794bddbf1edaee18f488a8dca7e4f
data/CHANGELOG.md CHANGED
@@ -2,6 +2,22 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## [2.8.2](https://github.com/voxpupuli/beaker-hostgenerator/tree/2.8.2) (2023-11-20)
6
+
7
+ [Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/2.8.1...2.8.2)
8
+
9
+ **Fixed bugs:**
10
+
11
+ - \(PA-5948\) Update host generator to use aarch64 for amazon linux [\#345](https://github.com/voxpupuli/beaker-hostgenerator/pull/345) ([span786](https://github.com/span786))
12
+
13
+ ## [2.8.1](https://github.com/voxpupuli/beaker-hostgenerator/tree/2.8.1) (2023-11-15)
14
+
15
+ [Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/2.8.0...2.8.1)
16
+
17
+ **Fixed bugs:**
18
+
19
+ - explicitly install cronie on EL8+ [\#343](https://github.com/voxpupuli/beaker-hostgenerator/pull/343) ([evgeni](https://github.com/evgeni))
20
+
5
21
  ## [2.8.0](https://github.com/voxpupuli/beaker-hostgenerator/tree/2.8.0) (2023-11-01)
6
22
 
7
23
  [Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/2.7.0...2.8.0)
@@ -1111,7 +1111,7 @@ module BeakerHostGenerator
1111
1111
 
1112
1112
  # Amazon Linux
1113
1113
  yield %w[amazon2023-64 amazon-2023-x86_64]
1114
- yield %w[amazon2023-AARCH64 amazon-2023-arm64]
1114
+ yield %w[amazon2023-AARCH64 amazon-2023-aarch64]
1115
1115
 
1116
1116
  # AlmaLinux and Rocky
1117
1117
  %w[almalinux rocky].each do |os|
@@ -25,9 +25,9 @@ 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 /^aix/, /^amazon/, /^fedora/, /^opensuse/, /^panos/
28
+ when /^aix/, /^fedora/, /^opensuse/, /^panos/
29
29
  base_config['template'] ||= base_config['platform']
30
- when /^(debian|ubuntu)/
30
+ when /^(debian|ubuntu|amazon)/
31
31
  os = Regexp.last_match(1)
32
32
  base_template = node_info['ostype'].sub(os, "#{os}-")
33
33
  arch = case node_info['bits']
@@ -77,7 +77,7 @@ module BeakerHostGenerator
77
77
 
78
78
  def el_package_install_command(version)
79
79
  if version >= 8
80
- 'dnf install -y crontabs initscripts iproute openssl wget which glibc-langpack-en hostname'
80
+ 'dnf install -y cronie crontabs initscripts iproute openssl wget which glibc-langpack-en hostname'
81
81
  else
82
82
  'yum install -y crontabs initscripts iproute openssl wget which sysvinit-tools tar ss'
83
83
  end
@@ -1,5 +1,5 @@
1
1
  module BeakerHostGenerator
2
2
  module Version
3
- STRING = '2.8.0'
3
+ STRING = '2.8.2'
4
4
  end
5
5
  end
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.8.0
4
+ version: 2.8.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: 2023-11-01 00:00:00.000000000 Z
14
+ date: 2023-11-20 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: fakefs