provisioners/chef: Fix loading of the custom configure file [GH-876]
This commit is contained in:
parent
5289261cc0
commit
fe1f7bf149
|
@ -98,6 +98,7 @@ BUG FIXES:
|
|||
machine before and after provisioning also with Chef client. [GH-2845]
|
||||
- provisioners/chef: Set `encrypted_data_bag_secret` on the VM to `nil`
|
||||
if the secret is not specified. [GH-2984]
|
||||
- provisioners/chef: Fix loading of the custom configure file. [GH-876]
|
||||
- provisioners/docker: Only add SSH user to docker group if the user
|
||||
isn't already in it. [GH-2838]
|
||||
- provisioners/docker: Configuring autostart works properly with
|
||||
|
|
|
@ -37,5 +37,5 @@ add_formatter "<%= formatter %>"
|
|||
<% end %>
|
||||
|
||||
<% if custom_configuration -%>
|
||||
load "<%= custom_configuration %>"
|
||||
Chef::Config.from_file "<%= custom_configuration %>"
|
||||
<% end -%>
|
||||
|
|
|
@ -41,5 +41,5 @@ add_formatter "<%= formatter %>"
|
|||
<% end %>
|
||||
|
||||
<% if custom_configuration -%>
|
||||
load "<%= custom_configuration %>"
|
||||
Chef::Config.from_file "<%= custom_configuration %>"
|
||||
<% end -%>
|
||||
|
|
Loading…
Reference in New Issue