Allow users specify "config.chef.node_name = nil" to get the FQDN
This commit is contained in:
parent
cdd1be4be5
commit
abf5f3ccfc
|
@ -1,6 +1,8 @@
|
|||
log_level <%= log_level.inspect %>
|
||||
log_location STDOUT
|
||||
<% if node_name %>
|
||||
node_name "<%= node_name %>"
|
||||
<% end %>
|
||||
ssl_verify_mode :verify_none
|
||||
chef_server_url "<%= chef_server_url %>"
|
||||
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
<% if node_name %>
|
||||
node_name "<%= node_name %>"
|
||||
<% end %>
|
||||
file_cache_path "<%= provisioning_path %>"
|
||||
cookbook_path <%= cookbooks_path %>
|
||||
role_path <%= roles_path %>
|
||||
|
|
Loading…
Reference in New Issue