From 98bf7d7a9089a0de3fc1d4becb5c6d64e0770d8c Mon Sep 17 00:00:00 2001 From: Alex Kiernan Date: Thu, 6 Oct 2016 11:46:31 +0100 Subject: [PATCH] Add VMware fusion Add configuration so that VMware fusion configuration matches Virtualbox --- webgoat-images/vagrant-users/Vagrantfile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/webgoat-images/vagrant-users/Vagrantfile b/webgoat-images/vagrant-users/Vagrantfile index f24bee340..06145fea5 100644 --- a/webgoat-images/vagrant-users/Vagrantfile +++ b/webgoat-images/vagrant-users/Vagrantfile @@ -12,6 +12,12 @@ Vagrant.configure(2) do |config| vb.name = "WebGoat-Users" vb.customize ["modifyvm", :id, "--nictype1", "virtio"] end + config.vm.provider "vmware_fusion" do |vf| + vf.gui = false + vf.vmx["memsize"] = 4096 + vf.vmx["numvcpus"] = 2 + vf.vmx["displayname"] = "WebGoat-Users" + end config.ssh.shell = "bash -c 'BASH_ENV=/etc/profile exec bash'"