
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
11 lines
171 B
Bash
Executable File
11 lines
171 B
Bash
Executable File
#!/bin/bash
|
|
|
|
. /opt/kolla/kolla-common.sh
|
|
. /opt/kolla/config-rabbit.sh
|
|
|
|
check_required_vars RABBITMQ_PASS RABBITMQ_USER
|
|
|
|
configure_rabbit
|
|
|
|
exec /usr/sbin/rabbitmq-server
|