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.