beaker-puppet 2.0.0 → 2.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/release.yml +1 -1
- data/.github/workflows/test.yml +1 -1
- data/CHANGELOG.md +8 -0
- data/lib/beaker-puppet/install_utils/foss_utils.rb +2 -2
- data/lib/beaker-puppet/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: ed92db1a5ff7b3d48c3d1c3f183d9640c5f730bcfd7231a35590123a32a7cf83
|
4
|
+
data.tar.gz: 91a53c69a0f91c18243596de90c59be2b03ad48dd675e9c8e77243be800531d9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4236f87fc9d708444991301675fd0dfaad82b5c8f0c965d9102d0893540157dd32a34ab93f7fae56219bade0314a357dd7ab9642d65b336f8e9bc324152b9965
|
7
|
+
data.tar.gz: badc58897f5f7eb894d5f92e9f4dc4a5d943d244254e55d0e9cc5e7afaa53b9df571084fca2f50b44d991cefc45277fb3353aaecdac11893605b4d5578e48602
|
data/.github/workflows/test.yml
CHANGED
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
|
+
## [2.1.0](https://github.com/voxpupuli/beaker-puppet/tree/2.1.0) (2024-03-19)
|
6
|
+
|
7
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/2.0.0...2.1.0)
|
8
|
+
|
9
|
+
**Implemented enhancements:**
|
10
|
+
|
11
|
+
- \[PA-6181\]: Fix acceptance test failure caused due to addition of Amazon Linux 2023 in pe-client-tools for orchestrator client pipeline [\#250](https://github.com/puppetlabs/beaker-puppet/pull/250) ([span786](https://github.com/span786))
|
12
|
+
|
5
13
|
## [2.0.0](https://github.com/voxpupuli/beaker-puppet/tree/2.0.0) (2023-05-05)
|
6
14
|
|
7
15
|
[Full Changelog](https://github.com/voxpupuli/beaker-puppet/compare/1.29.0...2.0.0)
|
@@ -1148,7 +1148,7 @@ module Beaker
|
|
1148
1148
|
repo_configs_dir = nil,
|
1149
1149
|
opts = options)
|
1150
1150
|
variant, version, arch, codename = host['platform'].to_array
|
1151
|
-
if variant !~ /^(fedora|el|redhat|centos|debian|ubuntu|huaweios|cisco_nexus|cisco_ios_xr|sles)$/
|
1151
|
+
if variant !~ /^(amazon|fedora|el|redhat|centos|debian|ubuntu|huaweios|cisco_nexus|cisco_ios_xr|sles)$/
|
1152
1152
|
raise "No repository installation step for #{variant} yet..."
|
1153
1153
|
end
|
1154
1154
|
|
@@ -1162,7 +1162,7 @@ module Beaker
|
|
1162
1162
|
# url type
|
1163
1163
|
_, protocol, hostname = opts[:dev_builds_url].partition %r{.*://}
|
1164
1164
|
dev_builds_url = protocol + hostname
|
1165
|
-
dev_builds_url = opts[:dev_builds_url] if variant =~ /^(fedora|el|redhat|centos)$/
|
1165
|
+
dev_builds_url = opts[:dev_builds_url] if variant =~ /^(amazon|fedora|el|redhat|centos)$/
|
1166
1166
|
|
1167
1167
|
install_repo_configs(host, dev_builds_url, package_name,
|
1168
1168
|
build_version, platform_configs_dir)
|
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: 2.
|
4
|
+
version: 2.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Vox Pupuli
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-03-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: fakefs
|