036d11fd74
Added a dedicated user in RabbitMQ while removing the standard guest account. Additionally cleaned up ironic.conf, and setup_env such that a user can now query ironic.
16 lines
382 B
Bash
16 lines
382 B
Bash
#!/bin/bash
|
|
sudo apt-get -y install git
|
|
mkdir /opt/stack
|
|
cd /opt/stack
|
|
if [ ! -d ansible ]; then
|
|
git clone git://github.com/ansible/ansible.git --recursive
|
|
else
|
|
cd ansible
|
|
git pull --rebase
|
|
git submodule update --init --recursive
|
|
fi
|
|
echo
|
|
echo "source /opt/stack/ansible/hacking/env-setup to proceed"
|
|
export IRONIC_URL=http://localhost:6385/
|
|
export OS_AUTH_TOJEN=' '
|