Created
June 22, 2011 07:56
-
-
Save wilmoore/1039666 to your computer and use it in GitHub Desktop.
Base "knife" configuration for a standard chef-solo setup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# .chef/knife.rb | |
# SEE: http://wiki.opscode.com/display/chef/Troubleshooting+and+Technical+FAQ | |
# set some sensible defaults | |
current_dir = File.dirname(__FILE__) | |
user = ENV['OPSCODE_USER'] || ENV['USER'] | |
log_level :debug | |
log_location STDOUT | |
node_name `hostname` | |
client_key '' | |
validation_client_name '' | |
validation_key "#{current_dir}/validation.pem" | |
chef_server_url '' | |
cache_type 'BasicFile' | |
cache_options( :path => "#{ENV['HOME']}/.chef/checksums" ) | |
cookbook_path "#{current_dir}/../cookbooks" | |
cookbook_copyright 'Navigant, Inc.' | |
cookbook_license 'apachev2' | |
cookbook_email '[email protected]' | |
environment_path "#{current_dir}/../environments" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment