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
{ | |
"rules": [ | |
{ | |
"local": [ | |
{ | |
"user": { | |
"name": "$0 $1", | |
"email": "$2" | |
} | |
} |
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
#!/usr/bin/env bash | |
# perform any necessary updates | |
apt-get update | |
apt-get upgrade -y | |
# install git so we can download devstack & integration tests | |
apt-get install git -y | |
# download, configure, and run devstack | |
git clone https://github.com/cloudbuilders/devstack.git | |
cd devstack | |
echo KEYSTONE_REPO=git://github.com/openstack/keystone.git >> localrc |