Move scripts for rabbitmq to docker_templates
Change-Id: I6f06c067c18e4a3eafbed2b2796aa1cfe6c9b28c Partially-Implements: blueprint remove-docker-dir
This commit is contained in:
parent
c685119fec
commit
eef32f0353
@ -1,19 +0,0 @@
|
||||
#!/bin/bash
|
||||
SOURCE_CONFIG="/opt/kolla/rabbitmq/rabbitmq.config"
|
||||
TARGET_CONFIG="/etc/rabbitmq/rabbitmq.config"
|
||||
SOURCE_ENV="/opt/kolla/rabbitmq/rabbitmq-env.conf"
|
||||
TARGET_ENV="/etc/rabbitmq/rabbitmq-env.conf"
|
||||
OWNER="rabbitmq"
|
||||
|
||||
# Cluster configuration
|
||||
if [[ -f "$SOURCE_CONFIG" ]]; then
|
||||
cp -af $SOURCE_CONFIG $TARGET_CONFIG
|
||||
chown ${OWNER}: $TARGET_CONFIG
|
||||
chmod 0600 $TARGET_CONFIG
|
||||
fi
|
||||
|
||||
if [[ -f "$SOURCE_ENV" ]]; then
|
||||
cp -af $SOURCE_ENV $TARGET_ENV
|
||||
chown ${OWNER}: $TARGET_ENV
|
||||
chmod 0600 $TARGET_ENV
|
||||
fi
|
@ -1,7 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
function set_rabbitmq_cookie {
|
||||
echo "${RABBITMQ_CLUSTER_COOKIE}" > /var/lib/rabbitmq/.erlang.cookie
|
||||
chown -R rabbitmq: /var/lib/rabbitmq
|
||||
chmod 400 /var/lib/rabbitmq/.erlang.cookie
|
||||
}
|
@ -1,23 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
set -o errexit
|
||||
|
||||
CMD="/usr/sbin/rabbitmq-server"
|
||||
ARGS=""
|
||||
|
||||
# loading common functions
|
||||
source /opt/kolla/kolla-common.sh
|
||||
|
||||
# Execute config strategy
|
||||
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
|
@ -1 +0,0 @@
|
||||
../../docker/common/rabbitmq/config-external.sh
|
19
docker_templates/rabbitmq/config-external.sh
Normal file
19
docker_templates/rabbitmq/config-external.sh
Normal file
@ -0,0 +1,19 @@
|
||||
#!/bin/bash
|
||||
SOURCE_CONFIG="/opt/kolla/rabbitmq/rabbitmq.config"
|
||||
TARGET_CONFIG="/etc/rabbitmq/rabbitmq.config"
|
||||
SOURCE_ENV="/opt/kolla/rabbitmq/rabbitmq-env.conf"
|
||||
TARGET_ENV="/etc/rabbitmq/rabbitmq-env.conf"
|
||||
OWNER="rabbitmq"
|
||||
|
||||
# Cluster configuration
|
||||
if [[ -f "$SOURCE_CONFIG" ]]; then
|
||||
cp -af $SOURCE_CONFIG $TARGET_CONFIG
|
||||
chown ${OWNER}: $TARGET_CONFIG
|
||||
chmod 0600 $TARGET_CONFIG
|
||||
fi
|
||||
|
||||
if [[ -f "$SOURCE_ENV" ]]; then
|
||||
cp -af $SOURCE_ENV $TARGET_ENV
|
||||
chown ${OWNER}: $TARGET_ENV
|
||||
chmod 0600 $TARGET_ENV
|
||||
fi
|
@ -1 +0,0 @@
|
||||
../../docker/common/rabbitmq/config-rabbit.sh
|
7
docker_templates/rabbitmq/config-rabbit.sh
Normal file
7
docker_templates/rabbitmq/config-rabbit.sh
Normal file
@ -0,0 +1,7 @@
|
||||
#!/bin/bash
|
||||
|
||||
function set_rabbitmq_cookie {
|
||||
echo "${RABBITMQ_CLUSTER_COOKIE}" > /var/lib/rabbitmq/.erlang.cookie
|
||||
chown -R rabbitmq: /var/lib/rabbitmq
|
||||
chmod 400 /var/lib/rabbitmq/.erlang.cookie
|
||||
}
|
@ -1 +0,0 @@
|
||||
../../docker/common/rabbitmq/start.sh
|
23
docker_templates/rabbitmq/start.sh
Executable file
23
docker_templates/rabbitmq/start.sh
Executable file
@ -0,0 +1,23 @@
|
||||
#!/bin/bash
|
||||
|
||||
set -o errexit
|
||||
|
||||
CMD="/usr/sbin/rabbitmq-server"
|
||||
ARGS=""
|
||||
|
||||
# loading common functions
|
||||
source /opt/kolla/kolla-common.sh
|
||||
|
||||
# Execute config strategy
|
||||
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
|
Loading…
x
Reference in New Issue
Block a user