Skip to content

Instantly share code, notes, and snippets.

@gondoi
Created October 17, 2012 15:46
Show Gist options
  • Save gondoi/3906273 to your computer and use it in GitHub Desktop.
Save gondoi/3906273 to your computer and use it in GitHub Desktop.
Quick test machine to install devstack
Vagrant::Config.run do |config|
config.vm.box = "precise"
config.vm.box_url = "http://files.vagrantup.com/precise64.box"
config.vm.provision :shell, :inline => "apt-get update && apt-get install -y git-core"
config.vm.provision :shell, :inline => "git clone https://github.com/openstack-dev/devstack.git"
end
# Then:
# vagrant ssh
# cd devstack && ./stack.sh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment