vagrant: Add installation support for MacOS 10.15.6.

There are file sharing issues with the mac version 10.15.6 and
vagrant. Using parallels as a provider for vagrant fixes the issue.
This commit is contained in:
Aman 2020-08-10 11:48:22 +05:30 committed by Aman Agrawal
parent d63cf04a20
commit 6e0d4b9502
1 changed files with 6 additions and 0 deletions

6
Vagrantfile vendored
View File

@ -119,6 +119,12 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
vb.memory = vm_memory
vb.cpus = vm_num_cpus
end
config.vm.provider "parallels" do |vb, override|
config.vm.box = "bento/ubuntu-20.04"
config.vm.box_version = "202005.21.0"
vb.memory = vm_memory
vb.cpus = vm_num_cpus
end
$provision_script = <<SCRIPT
set -x