Created
June 10, 2013 18:39
-
-
Save achanda/5751126 to your computer and use it in GitHub Desktop.
Devstack install script
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
#!/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