2010-11-14 18:24:21 +00:00
|
|
|
<% if node_name %>
|
2010-07-06 09:17:18 +00:00
|
|
|
node_name "<%= node_name %>"
|
2010-11-14 18:24:21 +00:00
|
|
|
<% end %>
|
2013-07-04 16:49:37 +00:00
|
|
|
file_cache_path "<%= file_cache_path %>"
|
|
|
|
file_backup_path "<%= file_backup_path %>"
|
2011-07-11 16:34:11 +00:00
|
|
|
cookbook_path <%= cookbooks_path.inspect %>
|
2013-05-02 01:58:22 +00:00
|
|
|
<% if roles_path %>
|
2014-05-01 22:26:34 +00:00
|
|
|
if Chef::VERSION.to_f < 11.8
|
2014-02-14 22:09:06 +00:00
|
|
|
role_path <%= roles_path.first.inspect %>
|
|
|
|
else
|
|
|
|
role_path <%= roles_path.inspect %>
|
|
|
|
end
|
2013-05-02 01:58:22 +00:00
|
|
|
<% end %>
|
2011-01-09 07:30:07 +00:00
|
|
|
log_level <%= log_level.inspect %>
|
2013-02-05 12:53:34 +00:00
|
|
|
verbose_logging <%= verbose_logging.inspect %>
|
2010-07-29 04:34:28 +00:00
|
|
|
|
2014-02-16 21:14:56 +00:00
|
|
|
encrypted_data_bag_secret <%= encrypted_data_bag_secret.inspect %>
|
2012-03-13 22:27:11 +00:00
|
|
|
|
2011-07-06 16:05:26 +00:00
|
|
|
<% if data_bags_path -%>
|
2011-07-11 16:34:11 +00:00
|
|
|
data_bag_path <%= data_bags_path.inspect %>
|
2011-05-12 15:07:55 +00:00
|
|
|
<% end %>
|
|
|
|
|
2011-01-09 07:30:07 +00:00
|
|
|
<% if recipe_url -%>
|
2010-07-29 04:34:28 +00:00
|
|
|
recipe_url "<%= recipe_url %>"
|
2011-01-09 07:30:07 +00:00
|
|
|
<% end -%>
|
|
|
|
|
2013-07-11 05:52:37 +00:00
|
|
|
<% if environments_path %>
|
|
|
|
environment_path <%= environments_path.inspect %>
|
|
|
|
<% end -%>
|
|
|
|
|
|
|
|
<% if environment %>
|
|
|
|
environment "<%= environment %>"
|
|
|
|
<% end -%>
|
|
|
|
|
2011-01-09 07:30:07 +00:00
|
|
|
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 %>
|
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 -%>
|
2014-02-20 18:16:23 +00:00
|
|
|
Chef::Config.from_file "<%= custom_configuration %>"
|
2013-07-11 02:31:52 +00:00
|
|
|
<% end -%>
|