
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
24 lines
445 B
Bash
Executable File
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
|