Created
October 17, 2012 15:46
-
-
Save gondoi/3906273 to your computer and use it in GitHub Desktop.
Quick test machine to install devstack
This file contains hidden or 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
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