Skip to content

Instantly share code, notes, and snippets.

@nerd0
Created January 3, 2013 19:58
Show Gist options
  • Save nerd0/4446559 to your computer and use it in GitHub Desktop.
Save nerd0/4446559 to your computer and use it in GitHub Desktop.
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant::Config.run do |config|
config.vbguest.auto_update = false #true
config.vm.define :aio do |aio|
aio.vm.box = "lucid64"
aio.vm.network :hostonly, "192.168.2.11"
aio.vm.host_name = "aiohost"
aio.vm.provision :shell, :path => "setup.sh"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment