Skip to content

Commit

Permalink
Properly quote options in chef solo configuration for Windows. [closes
Browse files Browse the repository at this point in the history
  • Loading branch information
mitchellh committed Jul 11, 2011
1 parent 0dacd78 commit dd31453
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions templates/chef_solo_solo.erb
Original file line number Diff line number Diff line change
Expand Up @@ -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 -%>
Expand Down

0 comments on commit dd31453

Please sign in to comment.