Merge pull request #4973 from mitchellh/sethvargo/chef_roles_path
Fix Chef Solo template
This commit is contained in:
commit
66d8c85e3f
|
@ -5,11 +5,7 @@ file_cache_path "<%= file_cache_path %>"
|
|||
file_backup_path "<%= file_backup_path %>"
|
||||
cookbook_path <%= cookbooks_path.inspect %>
|
||||
<% if roles_path %>
|
||||
if Chef::VERSION.to_f < 11.8
|
||||
role_path <%= roles_path.first.inspect %>
|
||||
else
|
||||
role_path <%= roles_path.inspect %>
|
||||
end
|
||||
role_path <%= roles_path.size == 1 ? roles_path.first.inspect : roles_path.inspect %>
|
||||
<% end %>
|
||||
log_level <%= log_level.inspect %>
|
||||
verbose_logging <%= verbose_logging.inspect %>
|
||||
|
|
Loading…
Reference in New Issue