From 2c0980e3a6e2e7ab5c779b58d14ae3fea7ff9958 Mon Sep 17 00:00:00 2001 From: Anders Kaseorg Date: Wed, 29 May 2019 15:42:30 -0700 Subject: [PATCH] Vagrantfile: Remove VMmare Fusion provider. Ubuntu 14.04 is EOL. Mac users can use the VirtualBox provider (and now maybe the Docker provider?). We can add back the VMware Fusion provider later if someone cares enough to get it working with Ubuntu 18.04. Signed-off-by: Anders Kaseorg --- Vagrantfile | 6 ------ 1 file changed, 6 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index e27d013a8f..fd96c4dc24 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -159,12 +159,6 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| vb.cpus = vm_num_cpus end - config.vm.provider "vmware_fusion" do |vb, override| - override.vm.box = "puphpet/ubuntu1404-x64" - vb.vmx["memsize"] = vm_memory - vb.vmx["numvcpus"] = vm_num_cpus - end - config.vm.provider "docker" do |d, override| override.vm.box = nil d.build_dir = File.join(__dir__, "tools", "setup", "dev-vagrant-docker")