Properly quote options in chef solo configuration for Windows. [closes GH-406]
This commit is contained in:
parent
0dacd78b10
commit
dd31453c1a
|
@ -2,12 +2,12 @@
|
|||
node_name "<%= node_name %>"
|
||||
<% end %>
|
||||
file_cache_path "<%= provisioning_path %>"
|
||||
cookbook_path <%= cookbooks_path %>
|
||||
role_path <%= roles_path %>
|
||||
cookbook_path <%= cookbooks_path.inspect %>
|
||||
role_path <%= roles_path.inspect %>
|
||||
log_level <%= log_level.inspect %>
|
||||
|
||||
<% if data_bags_path -%>
|
||||
data_bag_path <%= data_bags_path %>
|
||||
data_bag_path <%= data_bags_path.inspect %>
|
||||
<% end %>
|
||||
|
||||
<% if recipe_url -%>
|
||||
|
|
Loading…
Reference in New Issue