puppet_litmus 2.4.0 → 2.4.1
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/lib/puppet_litmus/rake_helper.rb +2 -1
- data/lib/puppet_litmus/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: e6c8a0cd69ad8f6cfb4eed234dfd6bc8debe88a1a7ef0b2945ff6d21c4addb90
|
4
|
+
data.tar.gz: c0fa10be3afdcbcca5309f40bcf785c1a3b1156261e329288c63c1aa8f2535f9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6bac57d756f85876882d6741cad40f56c386bd99b4d5ea34abd8137beaac21acb94cbc45ed26bba962d4fc7c115952d77f5076e4a8b4b2c233b55ed2cf0fbecb
|
7
|
+
data.tar.gz: 96dcb4de5adfd5ad7eab0ae916fdb9cc45c937a7758b2ee754d2936b7915bfbc35b2c5c6898e836f3027fa35d9799a77d818dab89cce90aa7da15bd55bbaa13d
|
@@ -130,9 +130,10 @@ module PuppetLitmus::RakeHelper # rubocop:disable Metrics/ModuleLength
|
|
130
130
|
def install_agent(collection, targets, inventory_hash)
|
131
131
|
include ::BoltSpec::Run
|
132
132
|
puppet_version = ENV.fetch('PUPPET_VERSION', nil)
|
133
|
+
# Skip forge token assignation when pointing to private collection endpoints as it is only accesible via VPN and it fails when credentials are passed.
|
133
134
|
forge_token = ENV.fetch('PUPPET_FORGE_TOKEN', nil)
|
134
135
|
params = {}
|
135
|
-
params['password'] = forge_token if forge_token
|
136
|
+
params['password'] = forge_token if forge_token && !collection.include?('puppetcore8-nightly')
|
136
137
|
params['collection'] = collection if collection
|
137
138
|
params['version'] = puppet_version if puppet_version
|
138
139
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: puppet_litmus
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.4.
|
4
|
+
version: 2.4.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Puppet, Inc.
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-10-
|
11
|
+
date: 2025-10-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bolt
|