Merge pull request #10346 from hashicorp/f-updateVMWareDocsBox

Update vmware_desktop in boxes.html.md
This commit is contained in:
Brian Cain 2018-11-01 09:39:25 -07:00 committed by GitHub
commit 0dd3f57e81
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 4 deletions

View File

@ -95,10 +95,8 @@ by adding a Vagrantfile to the box with the following content:
```ruby
Vagrant.configure("2") do |config|
["vmware_workstation", "vmware_fusion"].each do |vmware_provider|
config.vm.provider(vmware_provider) do |vmware|
vmware.whitelist_verified = true
end
config.vm.provider "vmware_desktop" do |vmware|
vmware.whitelist_verified = true
end
end
```