From ee6c034baacb558ff6353e840973120e60b1bb93 Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Tue, 29 Dec 2020 16:27:29 -0500 Subject: [PATCH] fix: allow vmware-based vm to work on big sur There seems to be an issue in Vmware that causes SSH to fail for new VMs. https://github.com/hashicorp/vagrant/issues/12045 --- Vagrantfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Vagrantfile b/Vagrantfile index 254eff630..309dfb975 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -31,10 +31,12 @@ Vagrant::configure("2") do |config| config.vm.provider :vmware_fusion do |v, override| v.vmx["memsize"] = BOX_MEMORY + v.ssh_info_public = true end config.vm.provider :vmware_desktop do |v, override| v.vmx["memsize"] = BOX_MEMORY + v.ssh_info_public = true end config.vm.define "empty", autostart: false