diff options
author | Adam Jacob <adam@hjksolutions.com> | 2008-06-09 18:53:32 -0700 |
---|---|---|
committer | Adam Jacob <adam@hjksolutions.com> | 2008-06-09 18:53:32 -0700 |
commit | af843190f9be71469c4a20ef8f9021b292c05588 (patch) | |
tree | a38199db4baeaa3380ed41ec6e5e4c30b54b0685 /lib/chef/config.rb | |
parent | d373915a1ac9ea25fcb52ac8468e4670425e3376 (diff) | |
download | chef-af843190f9be71469c4a20ef8f9021b292c05588.tar.gz |
Huge amount of work, covering openid, clients, and all sorts of server stuff
Diffstat (limited to 'lib/chef/config.rb')
-rw-r--r-- | lib/chef/config.rb | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/lib/chef/config.rb b/lib/chef/config.rb index 807631aedb..192b510d17 100644 --- a/lib/chef/config.rb +++ b/lib/chef/config.rb @@ -39,10 +39,16 @@ class Chef @configuration = { :cookbook_path => [ "/etc/chef/site-cookbook", "/etc/chef/cookbook" ], :node_path => "/etc/chef/node", - :file_store_path => "/var/lib/chef/store", - :search_index_path => "/var/lib/chef/search_index", + :file_store_path => "/var/chef/store", + :search_index_path => "/var/chef/search_index", :log_level => :info, - :log_location => STDOUT + :log_location => STDOUT, + :openid_providers => nil, + :ssl_verify_mode => :verify_none, + :rest_timeout => 60, + :couchdb_url => "http://localhost:5984", + :registration_url => "http://localhost:4000", + :openid_url => "http://localhost:4001", } class << self |