Created
September 25, 2015 14:18
-
-
Save likerRr/a65aa672fd31e27b9af1 to your computer and use it in GitHub Desktop.
Vagrant shared symlinks setup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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