Skip to content

Commit

Permalink
Merge pull request #370 from cocazoulou/master
Browse files Browse the repository at this point in the history
Vagrantfile Template: Hyper-v Differencing_disk deprecation
  • Loading branch information
Seth Thomas authored Aug 30, 2018
2 parents 1060294 + 49d9bf0 commit c204d7e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ Vagrant.configure("2") do |config|
# ...
c.vm.provider :hyperv do |p|
p.differencing_disk = true
p.linked_clone = true
end
end
```
Expand Down
2 changes: 1 addition & 1 deletion templates/Vagrantfile.erb
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ Vagrant.configure("2") do |c|
when "hyperv" %>
p.vmname = "kitchen-<%= File.basename(config[:kitchen_root]) %>-<%= instance.name %>"
<% if config[:linked_clone] == true || config[:linked_clone] == false %>
p.differencing_disk = <%= config[:linked_clone] %>
p.linked_clone = <%= config[:linked_clone] %>
<% end
end %>

Expand Down

0 comments on commit c204d7e

Please sign in to comment.