Properly quote options in chef solo configuration for Windows. [closes GH-406]

This commit is contained in:
Mitchell Hashimoto 2011-07-11 09:34:11 -07:00
parent 0dacd78b10
commit dd31453c1a
1 changed files with 3 additions and 3 deletions

View File

@ -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 -%>