1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#
# Example Chef Server Config
log_level :debug
cookbook_path File.join(File.dirname(__FILE__), "..", "examples", "config", "cookbooks")
node_path File.join(File.dirname(__FILE__), "..", "examples", "config", "nodes")
file_store_path File.join(File.dirname(__FILE__), "..", "examples", "store")
openid_store_path File.join(File.dirname(__FILE__), "..", "examples", "openid-db")
openid_cstore_path File.join(File.dirname(__FILE__), "..", "examples", "openid-cstore")
merb_log_path File.join(File.dirname(__FILE__), "..", "examples", "logs")
search_index_path File.join(File.dirname(__FILE__), "..", "examples", "search_index")
# openid_providers [ "localhost:4001", "openid.hjksolutions.com" ]
Chef::Log::Formatter.show_time = false
|