beaker-puppet 1.22.1 → 1.22.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 13f2e03144c47918054b8cb3b3f470df71761a7b06c513f5c0455a541107c0ec
4
- data.tar.gz: f03a957fb46bce9f5645640e738534f3bef4eddc84d30a722645a2f713378513
3
+ metadata.gz: 34853498fbc2455c514d98b08ca269ca9e72d393cb0c4f65fe6c330b50b201a6
4
+ data.tar.gz: efc883d575d5a87358da4f16f77245a3785e5a1f646a949a0c8935f175027699
5
5
  SHA512:
6
- metadata.gz: f7853cf2cc0836170a6c0642404e647e6adac07ad315bc9199848aa0c6cc86e6dab010dadee890fb4b8d7050fbddac15e68b00c7a06b05ba9861e547043d729e
7
- data.tar.gz: 0be933ece5a86492d4c348564cf634376ec51b71fe46f318c4c187e91132674f46a33d7637ed4e7626162164fba3c31cb3f61999af6b232e3df0bd39e9cddd39
6
+ metadata.gz: f4898dbb5c44ec8cbab0ee7d5cbb506bac7a683dcdf8a02af6b4b453ddd78555ab88e351428b997fa72a67b6f782f1488e93fdf9dbe7a4890302698d79e6e5ae
7
+ data.tar.gz: 8f1f91a863822aaaa7fe2bea97f9714cbfa9d0fb35c5d4376fdf749513193ca8868a894e199c28c9d102f06b77088ec1c83bbcc8f8b39b936ff21b0ee81ff0fa
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
+ ## [1.22.2](https://github.com/voxpupuli/beaker-puppet/tree/1.22.2) (2021-12-31)
6
+
7
+ [Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.22.1...1.22.2)
8
+
9
+ **Merged pull requests:**
10
+
11
+ - Fix install\_puppet\_on on el8 [\#170](https://github.com/voxpupuli/beaker-puppet/pull/170) ([gcampbell12](https://github.com/gcampbell12))
12
+
5
13
  ## [1.22.1](https://github.com/voxpupuli/beaker-puppet/tree/1.22.1) (2021-08-19)
6
14
 
7
15
  [Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.22.0...1.22.1)
@@ -303,12 +303,10 @@ module Beaker
303
303
  # run_in_parallel option includes install
304
304
  run_in_parallel = run_in_parallel? opts, @options, 'install'
305
305
  block_on hosts, { :run_in_parallel => run_in_parallel } do |host|
306
- if host['platform'] =~ /el-(5|6|7)/
307
- relver = $1
308
- install_puppet_from_rpm_on(host, opts.merge(:release => relver, :family => 'el'))
309
- elsif host['platform'] =~ /fedora-(\d+)/
310
- relver = $1
311
- install_puppet_from_rpm_on(host, opts.merge(:release => relver, :family => 'fedora'))
306
+ if host['platform'] =~ /(el|fedora)-(\d+)/
307
+ family = $1
308
+ relver = $2
309
+ install_puppet_from_rpm_on(host, opts.merge(:release => relver, :family => family))
312
310
  elsif host['platform'] =~ /(ubuntu|debian|cumulus|huaweios)/
313
311
  install_puppet_from_deb_on(host, opts)
314
312
  elsif host['platform'] =~ /windows/
@@ -1,3 +1,3 @@
1
1
  module BeakerPuppet
2
- VERSION = '1.22.1'
2
+ VERSION = '1.22.2'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: beaker-puppet
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.22.1
4
+ version: 1.22.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vox Pupuli
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-08-19 00:00:00.000000000 Z
11
+ date: 2021-12-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rspec
@@ -268,7 +268,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
268
268
  - !ruby/object:Gem::Version
269
269
  version: '0'
270
270
  requirements: []
271
- rubygems_version: 3.2.22
271
+ rubygems_version: 3.2.32
272
272
  signing_key:
273
273
  specification_version: 4
274
274
  summary: Beaker's Puppet DSL Extension Helpers!