Skip to content

Instantly share code, notes, and snippets.

@likerRr
Created September 25, 2015 14:18
Show Gist options
  • Save likerRr/a65aa672fd31e27b9af1 to your computer and use it in GitHub Desktop.
Save likerRr/a65aa672fd31e27b9af1 to your computer and use it in GitHub Desktop.
Vagrant shared symlinks setup
Solves problem between windows (host) and linux (vagrant), when there are symlinks in shared folders at linux machine.
With this config symlinks will search at the machine, where they were created
config.vm.provider "virtualbox" do |v|
v.customize ["setextradata", :id, "VBoxInternal2/SharedFoldersEnableSymlinksCreate/v-root", "1"]
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment