Skip to content

Instantly share code, notes, and snippets.

@fnando
Created January 28, 2013 00:24
Show Gist options
  • Save fnando/4651652 to your computer and use it in GitHub Desktop.
Save fnando/4651652 to your computer and use it in GitHub Desktop.
Vagrant::Config.run do |config|
config.vm.box = "hellobits"
config.vm.network :hostonly, "192.168.33.2"
config.vm.share_folder "v-root", "/Users/fnando/Projects", ".", :nfs => true
config.vm.customize [
"setextradata", :id,
"VBoxInternal2/SharedFoldersEnableSymlinksCreate/v-root", "1"
]
config.vm.customize [
"setextradata", :id,
"VBoxInternal/Devices/ahci/0/LUN#[0]/Config/IgnoreFlush", "1"
]
config.vm.customize [
"modifyvm", :id,
"--memory", "2048"
]
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment