Sam Yaple c97ccd6a5f Ansible Rabbitmq support
Adds initial support for Rabbitmq in Ansible using the CONFIG_EXTERNAL methods.

Additionally, this refactors some of the Rabbitmq config script to allow for
reuse by CONFIG_EXTERNAL.

Partially Implements: blueprint ansible-service

Change-Id: I1765548f7e4f1258eb8a49e2a23242955f52655d
2015-07-03 14:16:47 +00:00

24 lines
445 B
Bash
Executable File

#!/bin/bash
set -o errexit
CMD="/usr/sbin/rabbitmq-server"
ARGS=""
# loading common functions
source /opt/kolla/kolla-common.sh
# config-internal script exec out of this function, it does not return here
set_configs
# loading functions
source /opt/kolla/config-rabbit.sh
# This catches all cases of the BOOTSTRAP variable being set, including empty
if [[ "${!KOLLA_BOOTSTRAP[@]}" ]]; then
set_rabbitmq_cookie
exit 0
fi
$CMD $ARGS