apt_stage_artifacts 0.8.0 → 0.8.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/apt_add_to_freight_library.rb +2 -2
- data/lib/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ee106eeb8e60ac6a9d942ded6cd6fed67bc799ec2c77f4740d59a6c4c0667b27
|
|
4
|
+
data.tar.gz: 1961201b900674777a81a9ec22959873cd5782bc5141b647b89fb893efe20356
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 988779891f6d6729d1fb70beacdd721b46ffc08a0d0cb5694f5461f3c987b839f87dcdda8fa557050232d85ce539e501759da7440638a2ffc59eac1dc10e35a0
|
|
7
|
+
data.tar.gz: 04e70a00aaef203277698f49e521ba0daf83c83d7b2f1752a39727e793ab53b1c6c06d25a95f1c4c07ed5c1d620bc599052a32fe311b27cc6ca45d057a6e810e
|
|
@@ -92,7 +92,7 @@ class AptAddToFreightLibrary
|
|
|
92
92
|
|
|
93
93
|
freight_config_file = File.join(
|
|
94
94
|
AptStageArtifacts::FREIGHT_CONFIG_DIRECTORY,
|
|
95
|
-
"
|
|
95
|
+
"puppet#{@puppet_version}.conf"
|
|
96
96
|
)
|
|
97
97
|
fatal "Cannot read '#{freight_config_file} on #{`hostname`.chomp}." unless
|
|
98
98
|
File.readable?(freight_config_file)
|
|
@@ -102,7 +102,7 @@ class AptAddToFreightLibrary
|
|
|
102
102
|
|
|
103
103
|
Dir.mktmpdir do |temporary_directory|
|
|
104
104
|
deb_artifacts.each do |artifact_path|
|
|
105
|
-
logger.info "Adding #{artifact_path} to
|
|
105
|
+
logger.info "Adding #{artifact_path} to puppet#{@puppet_version}/#{@apt_component}"
|
|
106
106
|
deb_artifact_path = artifact_path
|
|
107
107
|
if deb_artifact_path.start_with?('https://', 'http://')
|
|
108
108
|
download_data = URI.parse(deb_artifact_path).open
|
data/lib/version.rb
CHANGED