From 93fc675ad5d771f2f7b38fa0c27b59564e824374 Mon Sep 17 00:00:00 2001 From: Alvaro Miranda Aguilera Date: Mon, 29 Oct 2018 19:26:34 +0100 Subject: [PATCH] Update boxes.html.md --- website/source/docs/vmware/boxes.html.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/website/source/docs/vmware/boxes.html.md b/website/source/docs/vmware/boxes.html.md index 80cd6e330..317a83422 100644 --- a/website/source/docs/vmware/boxes.html.md +++ b/website/source/docs/vmware/boxes.html.md @@ -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 ```