Sha256: fe026ef7b2ccf9ad7c6e3b7a780b270c85bd3dd3b5482afc13ff50070aba2920
Contents?: true
Size: 1.51 KB
Versions: 2
Compression:
Stored size: 1.51 KB
Contents
# -*- encoding: utf-8 -*- # # Author:: Fletcher Nichol (<fnichol@nichol.ca>) # # Copyright (C) 2013, Fletcher Nichol # # 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 'kitchen/provisioner/chef_base' module Kitchen module Provisioner # Chef Solo provisioner. # # @author Fletcher Nichol <fnichol@nichol.ca> class ChefSolo < ChefBase default_config :solo_rb, {} def create_sandbox super prepare_solo_rb end def run_command [ sudo('chef-solo'), "--config #{config[:root_path]}/solo.rb", "--json-attributes #{config[:root_path]}/dna.json", config[:log_file] ? "--logfile #{config[:log_file]}" : nil, "--log_level #{config[:log_level]}" ].join(" ") end private def prepare_solo_rb data = default_config_rb.merge(config[:solo_rb]) File.open(File.join(sandbox_path, "solo.rb"), "wb") do |file| file.write(format_config_file(data)) end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
test-kitchen-1.2.1 | lib/kitchen/provisioner/chef_solo.rb |
test-kitchen-1.2.0 | lib/kitchen/provisioner/chef_solo.rb |