Sha256: fd6c0f448e45020cae3040f09e00718f3a212c0a618c63e44b0b3dba7551ec10
Contents?: true
Size: 1.87 KB
Versions: 5
Compression:
Stored size: 1.87 KB
Contents
#!/usr/bin/env ruby # -*- 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 'rubygems' require 'chef/config' require 'chef_zero/server' require 'chef/chef_fs/chef_fs_data_store' require 'chef/chef_fs/config' require 'fileutils' # Bust out of our self-imposed sandbox before running chef-client so # gems installed via gem_package land in Chef's GEM_HOME. # # https://github.com/opscode/test-kitchen/issues/240 # ENV['GEM_HOME'] = ENV['GEM_PATH'] = ENV['GEM_CACHE'] = nil class ChefClientZero def self.start new.run end def run create_chef_zero_server run_chef_client end private def create_chef_zero_server Chef::Config.chef_repo_path = Chef::Config.find_chef_repo_path(repo_path) chef_fs = Chef::ChefFS::Config.new.local_fs chef_fs.write_pretty_json = true @server = ChefZero::Server.new( :generate_real_keys => false, :data_store => Chef::ChefFS::ChefFSDataStore.new(chef_fs) ) puts "-----> Starting Chef Zero server in #{chef_fs.fs_description}" @server.start_background at_exit do puts "-----> Shutting down Chef Zero server" @server.stop end end def repo_path ENV.fetch('CHEF_REPO_PATH', Dir.pwd) end def run_chef_client system("chef-client", *ARGV) end end ChefClientZero.start
Version data entries
5 entries across 5 versions & 1 rubygems