beaker-hostgenerator 2.7.0 → 2.8.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: abd4d336ed4341ce202a4974d28a39e46d140b7a1205c2e2687ef48098f8f7ec
4
- data.tar.gz: 7f03e17d963ddd8e7ef380fbefc312e558208fcd4bd0aada54f86bf437077a50
3
+ metadata.gz: 2d16f9bf91097af646703d9ad0a46c9cff0702356d93955312bb630bb1858c9b
4
+ data.tar.gz: 01010abaa0439206cf53e7d0a98f5d16f00675b75eef2df01634c740c2035326
5
5
  SHA512:
6
- metadata.gz: a03151f4df94c8d2e9422bc3fe10e4ae38921da0bf0496ba1f0214675b3f806c4c8554fcde8f17e8f134905d6036505cf4cbabb41ec2621245e9207a8b4557c4
7
- data.tar.gz: dc0bb98945538027004ba10f2cd9304810f8160f8473ed1d62f098f71290e4116a61abb93caea391f4a136b4427fcf25b73900fd034a3803878549793fa73833
6
+ metadata.gz: 4830a0451214d90ccb4e7bc342f5cce95cb222a9833d681fc46291cc65ca094e0e2f0a7dc5ff129db89e803f5890b26a06545aa5992b6f9f1a1c1229a6b1a4b4
7
+ data.tar.gz: 56c55f4719fd39883a5d95096e03377e77573aca2b64594e4b6aac4d5599f7936dd6a0be1ba98a173b2df42c4bb6da7ed5f874677229e945cd6f5a4688030a96
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.1](https://github.com/voxpupuli/beaker-hostgenerator/tree/2.8.1) (2023-11-15)
6
+
7
+ [Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/2.8.0...2.8.1)
8
+
9
+ **Fixed bugs:**
10
+
11
+ - explicitly install cronie on EL8+ [\#343](https://github.com/voxpupuli/beaker-hostgenerator/pull/343) ([evgeni](https://github.com/evgeni))
12
+
13
+ ## [2.8.0](https://github.com/voxpupuli/beaker-hostgenerator/tree/2.8.0) (2023-11-01)
14
+
15
+ [Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/2.7.0...2.8.0)
16
+
17
+ **Implemented enhancements:**
18
+
19
+ - Add osx14-64 and osx14-ARM64 support [\#341](https://github.com/voxpupuli/beaker-hostgenerator/pull/341) ([yachub](https://github.com/yachub))
20
+
5
21
  ## [2.7.0](https://github.com/voxpupuli/beaker-hostgenerator/tree/2.7.0) (2023-10-12)
6
22
 
7
23
  [Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/2.6.0...2.7.0)
@@ -1134,6 +1134,10 @@ module BeakerHostGenerator
1134
1134
  yield ["opensuse#{release}-32", "opensuse-#{release}-i386"]
1135
1135
  yield ["opensuse#{release}-64", "opensuse-#{release}-x86_64"]
1136
1136
  end
1137
+
1138
+ # macOS
1139
+ yield %w[osx14-64 osx-14-x86_64]
1140
+ yield %w[osx14-ARM64 osx-14-arm64]
1137
1141
  end
1138
1142
  end
1139
1143
  end
@@ -44,6 +44,8 @@ module BeakerHostGenerator
44
44
  raise "Unknown bits '#{node_info['bits']}' for '#{node_info['ostype']}'"
45
45
  end
46
46
  base_config['template'] ||= "#{base_template}-#{arch}"
47
+ when /^osx/
48
+ base_config['template'] ||= base_config['platform']&.gsub(/^osx/, 'macos')
47
49
  end
48
50
 
49
51
  base_config
@@ -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.7.0'
3
+ STRING = '2.8.1'
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.7.0
4
+ version: 2.8.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: 2023-10-12 00:00:00.000000000 Z
14
+ date: 2023-11-15 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: fakefs