simp-beaker-helpers 2.0.3 → 2.0.4
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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/simp/beaker_helpers/version.rb +1 -1
- data/lib/simp/beaker_helpers.rb +8 -3
- 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: 3916923de88666ed3a88a41f3053dca5791fb456d6386121c6a85c40641113e6
|
4
|
+
data.tar.gz: f1ebb8c0b1c9faf276537948cf31432305715921476132e4c39fff0411a36c79
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d639af43846bb7c711d42348f035e096c54afcc1b7a8e6db537412dbee093d5d2618e2f329a8fd95865d5514d59d2ecc0d33842334d1d1978e1f984e65b92497
|
7
|
+
data.tar.gz: 3b77cd3c5403c706a4198e8cc95465e504aac01640e5e614a6bf3aa1b8390a5e0a9e8a170852c9448f7738cf38ecdbb1299e84b02a770b3ac215946493809d36
|
data/CHANGELOG.md
CHANGED
data/lib/simp/beaker_helpers.rb
CHANGED
@@ -1459,9 +1459,14 @@ module Simp::BeakerHelpers
|
|
1459
1459
|
|
1460
1460
|
def run_puppet_install_helper_on(hosts)
|
1461
1461
|
block_on hosts, run_in_parallel: true do |host|
|
1462
|
-
|
1463
|
-
|
1464
|
-
|
1462
|
+
puppet_collection = ENV.fetch('BEAKER_PUPPET_COLLECTION', nil) || host.options['puppet_collection']
|
1463
|
+
if is_windows?(host)
|
1464
|
+
install_msi_on(host, puppet_collection)
|
1465
|
+
else
|
1466
|
+
BeakerPuppetHelpers::InstallUtils.install_puppet_release_repo_on(host, puppet_collection)
|
1467
|
+
package_name = ENV.fetch('BEAKER_PUPPET_PACKAGE_NAME', BeakerPuppetHelpers::InstallUtils.collection2packagename(host, puppet_collection))
|
1468
|
+
host.install_package(package_name)
|
1469
|
+
end
|
1465
1470
|
end
|
1466
1471
|
end
|
1467
1472
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: simp-beaker-helpers
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Chris Tessmer
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2025-10-
|
12
|
+
date: 2025-10-16 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: beaker
|