2010-04-09 06:17:25 +00:00
|
|
|
log_level <%= log_level.inspect %>
|
2010-04-09 04:07:24 +00:00
|
|
|
log_location STDOUT
|
2013-02-05 12:53:34 +00:00
|
|
|
verbose_logging <%= verbose_logging.inspect %>
|
2010-11-14 18:24:21 +00:00
|
|
|
<% if node_name %>
|
2010-04-09 04:07:24 +00:00
|
|
|
node_name "<%= node_name %>"
|
2010-11-14 18:24:21 +00:00
|
|
|
<% end %>
|
2010-04-09 04:07:24 +00:00
|
|
|
ssl_verify_mode :verify_none
|
|
|
|
chef_server_url "<%= chef_server_url %>"
|
|
|
|
|
|
|
|
validation_client_name "<%= validation_client_name %>"
|
|
|
|
validation_key "<%= validation_key %>"
|
|
|
|
client_key "<%= client_key %>"
|
|
|
|
|
2011-06-27 05:30:39 +00:00
|
|
|
encrypted_data_bag_secret "<%= encrypted_data_bag_secret %>"
|
|
|
|
|
2013-11-25 23:53:25 +00:00
|
|
|
<% if environment %>
|
2011-05-10 19:48:43 +00:00
|
|
|
environment "<%= environment %>"
|
|
|
|
<% end %>
|
|
|
|
|
2011-05-12 07:12:39 +00:00
|
|
|
file_cache_path "<%= file_cache_path %>"
|
|
|
|
file_backup_path "<%= file_backup_path %>"
|
|
|
|
|
|
|
|
http_proxy <%= http_proxy.inspect %>
|
|
|
|
http_proxy_user <%= http_proxy_user.inspect %>
|
|
|
|
http_proxy_pass <%= http_proxy_pass.inspect %>
|
|
|
|
https_proxy <%= https_proxy.inspect %>
|
|
|
|
https_proxy_user <%= https_proxy_user.inspect %>
|
|
|
|
https_proxy_pass <%= https_proxy_pass.inspect %>
|
|
|
|
no_proxy <%= no_proxy.inspect %>
|
|
|
|
|
2010-04-09 04:07:24 +00:00
|
|
|
pid_file "/var/run/chef/chef-client.pid"
|
|
|
|
|
|
|
|
Mixlib::Log::Formatter.show_time = true
|
2013-07-11 02:31:52 +00:00
|
|
|
|
2013-07-18 04:45:31 +00:00
|
|
|
<% if formatter %>
|
2013-08-16 02:35:01 +00:00
|
|
|
add_formatter "<%= formatter %>"
|
2013-07-18 04:45:31 +00:00
|
|
|
<% end %>
|
|
|
|
|
2013-07-11 02:31:52 +00:00
|
|
|
<% if custom_configuration -%>
|
|
|
|
load "<%= custom_configuration %>"
|
|
|
|
<% end -%>
|