Skip to content

Instantly share code, notes, and snippets.

@achanda
Created June 10, 2013 18:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save achanda/5751126 to your computer and use it in GitHub Desktop.
Save achanda/5751126 to your computer and use it in GitHub Desktop.
Devstack install script
#!/bin/sh
apt-get update
apt-get install -qqy git
git clone https://github.com/openstack-dev/devstack.git
cd devstack
echo ADMIN_PASSWORD=password > localrc
echo MYSQL_PASSWORD=password >> localrc
echo RABBIT_PASSWORD=password >> localrc
echo SERVICE_PASSWORD=password >> localrc
echo SERVICE_TOKEN=tokentoken >> localrc
./stack.sh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment