Try enabling virtualbox symlinks

This commit is contained in:
Tom Russell 2019-03-05 11:32:09 +00:00
parent 48c2b071d8
commit 719a731fa8

8
Vagrantfile vendored
View File

@ -23,13 +23,15 @@ Vagrant.configure("2") do |config|
# backing providers for Vagrant. These expose provider-specific options. # backing providers for Vagrant. These expose provider-specific options.
# Example for VirtualBox: # Example for VirtualBox:
# #
# config.vm.provider "virtualbox" do |vb| config.vm.provider :virtualbox do |vm|
# # Display the VirtualBox GUI when booting the machine # # Display the VirtualBox GUI when booting the machine
# vb.gui = true # vb.gui = true
#
# # Customize the amount of memory on the VM: # # Customize the amount of memory on the VM:
# vb.memory = "1024" # vb.memory = "1024"
# end
vm.customize ["setextradata", :id, "VBoxInternal2/SharedFoldersEnableSymlinksCreate/vagrant", "1"]
end
# #
# View the documentation for the provider you are using for more # View the documentation for the provider you are using for more
# information on available options. # information on available options.