Skip to content

Instantly share code, notes, and snippets.

@fh
Created August 8, 2013 06:40
Show Gist options
  • Save fh/6182067 to your computer and use it in GitHub Desktop.
Save fh/6182067 to your computer and use it in GitHub Desktop.
Vagrantfile: Name your Vagrantbox
Vagrant.configure("2") do |config|
config.vm.provider :virtualbox do |vb|
# list of all parameters for the customize call:
# VBoxManage modifyvm
vb.customize [
"modifyvm", :id,
"--name", "Some name for some box",
"--memory", "512"
]
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment