Skip to content

Instantly share code, notes, and snippets.

@ukdave
Created January 5, 2018 08:55
Show Gist options
  • Save ukdave/3da9795e1d2a0c857ac88de7950ad0f7 to your computer and use it in GitHub Desktop.
Save ukdave/3da9795e1d2a0c857ac88de7950ad0f7 to your computer and use it in GitHub Desktop.
My global Vagrant configuration (~/.vagrant.d/Vagrantfile)
Vagrant.configure("2") do |config|
# Use the vbguests coming with the box image
if Vagrant.has_plugin?('vagrant-vbguest')
config.vbguest.auto_update = false
end
# Use linked clones to save disk space and import time
config.vm.provider "virtualbox" do |v|
v.linked_clone = true
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment