Skip to content

Instantly share code, notes, and snippets.

@dedeibel
Created December 20, 2016 15:41
Show Gist options
  • Save dedeibel/c6e96c97c538985febef0f5e443190a4 to your computer and use it in GitHub Desktop.
Save dedeibel/c6e96c97c538985febef0f5e443190a4 to your computer and use it in GitHub Desktop.
Vagrant shared folders not on linux
use_nfs = ! RUBY_PLATFORM.downcase.include?("linux")
if (use_nfs)
node.vm.synced_folder ".", "/vagrant", type: "nfs"
else
node.vm.synced_folder ".", "/vagrant"
owner: "www-data", group: "www-data"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment