Created
January 3, 2013 19:58
-
-
Save nerd0/4446559 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- 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