From 719a731fa882b5d6cf539820a67e6efaf4a970a2 Mon Sep 17 00:00:00 2001 From: Tom Russell Date: Tue, 5 Mar 2019 11:32:09 +0000 Subject: [PATCH] Try enabling virtualbox symlinks --- Vagrantfile | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index 92d26d5f..7052fb4e 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -23,13 +23,15 @@ Vagrant.configure("2") do |config| # backing providers for Vagrant. These expose provider-specific options. # Example for VirtualBox: # - # config.vm.provider "virtualbox" do |vb| - # # Display the VirtualBox GUI when booting the machine - # vb.gui = true - # - # # Customize the amount of memory on the VM: - # vb.memory = "1024" - # end + config.vm.provider :virtualbox do |vm| + # # Display the VirtualBox GUI when booting the machine + # vb.gui = true + + # # Customize the amount of memory on the VM: + # vb.memory = "1024" + + vm.customize ["setextradata", :id, "VBoxInternal2/SharedFoldersEnableSymlinksCreate/vagrant", "1"] + end # # View the documentation for the provider you are using for more # information on available options.