apt_stage_artifacts 0.5.2 → 0.5.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7d5340af9ae7a10dbf26b7d3641da800134533fc1aba45a2d7cd6193b52178b5
4
- data.tar.gz: 4fcb981bc335b61fe6de5d72bab90e6dd6f85e7d1161d11f32d8802b0185c197
3
+ metadata.gz: 2689bcdf3ecc8c6ab056b52e1742f4e909942db2b304787e84f4985e714be14a
4
+ data.tar.gz: 718ce9a4f101ba8ec852049cfc786734407a3770dc7004b08c477722cb4936e3
5
5
  SHA512:
6
- metadata.gz: 2b8440f04c6c4c5f2df93ceb3288610be22bdd233e399402969996076ff525e4aa112f518998dcf6a77f635e25db4cf28563bd610e23df888e48562a0cde157e
7
- data.tar.gz: e455d6269419f4ab115ac162688b1328f93bf59345260c551bb018fc7a4d9897f208ccdb99f2f932bd8d4f12de8f026cb817de88a1c4a6d60b06696790c96571
6
+ metadata.gz: 1aaeb6d28045b93f524cad9822b8ad27e878d85d11c5898bbf3479327e7386ec87ee093cdd6e1ee4bdfaea28f594bee417101cca4eb1cf1ac0f30e55c37385a9
7
+ data.tar.gz: 2985d0076aa936f0d49f1dad26b44f9b05f772c95b583061908b8ac93ddaa89e9f7c45d8f020bce25b5a94fda6b31aa5a40973d373713735405443d59007c49d
@@ -90,7 +90,7 @@ class AptAddToFreightLibrary
90
90
  end
91
91
 
92
92
  freight_config_file = File.join(
93
- FREIGHT_CONFIG_DIRECTORY,
93
+ AptStageArtifacts::FREIGHT_CONFIG_DIRECTORY,
94
94
  "puppet_#{@puppet_version}_#{@repo_type}.conf"
95
95
  )
96
96
  fatal "Cannot read '#{freight_config_file} on #{`hostname`.chomp}." unless
@@ -112,7 +112,7 @@ class AptAddToFreightLibrary
112
112
 
113
113
  freight_add_command = %W[
114
114
  sudo --user=jenkins --set-home
115
- #{FREIGHT_COMMAND} add #{@verbose} --conf="#{freight_config_file}"
115
+ #{AptStageArtifacts::FREIGHT_COMMAND} add #{@verbose} --conf="#{freight_config_file}"
116
116
  #{deb_artifact_path} "apt/#{@codename}"
117
117
  ].join(' ')
118
118
 
@@ -5,6 +5,7 @@
5
5
  class AptStageArtifacts
6
6
  # Details about freight itself
7
7
  FREIGHT_COMMAND = '/usr/bin/freight'
8
+ FREIGHT_CONFIG_DIRECTORY = '/etc/freight.conf.d'
8
9
 
9
10
  # Name of the manifest.json file
10
11
  MANIFEST_JSON_FILENAME = 'apt_stage_manifest.json'
data/lib/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  class AptStageArtifacts
2
- VERSION = '0.5.2'
2
+ VERSION = '0.5.3'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: apt_stage_artifacts
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.2
4
+ version: 0.5.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Puppet Release Engineering