Sha256: 4fd9afb588c9662662fd31298bcefb9f07b5c448b2a2a2f6ba809f5f3c6b9d7a
Contents?: true
Size: 1.8 KB
Versions: 6
Compression:
Stored size: 1.8 KB
Contents
# # Copyright:: Chef Software Inc. # License:: Apache License, Version 2.0 # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # require "chef/config" require "cookbook-omnifetch" require_relative "exceptions" require_relative "chef_server_api_multi" require_relative "shell_out" require_relative "cookbook_metadata" require_relative "helpers" require "chef/http/simple" # Configure CookbookOmnifetch's dependency injection settings to use our classes and config. CookbookOmnifetch.configure do |c| c.cache_path = File.expand_path(File.join(ChefCLI::Helpers.package_home, "cache")) c.storage_path = Pathname.new(File.expand_path(File.join(ChefCLI::Helpers.package_home, "cache", "cookbooks"))) c.shell_out_class = ChefCLI::ShellOut c.cached_cookbook_class = ChefCLI::CookbookMetadata c.chef_server_download_concurrency = 10 c.default_chef_server_http_client = lambda do if Chef::Config.node_name.nil? raise ChefCLI::BUG.new("CookbookOmnifetch.default_chef_server_http_client requires Chef::Config;" \ " load the config or configure a different default") end ChefCLI::ChefServerAPIMulti.new(Chef::Config.chef_server_url, signing_key_filename: Chef::Config.client_key, client_name: Chef::Config.node_name) end end
Version data entries
6 entries across 6 versions & 1 rubygems