
Change-Id: I9bb0a1fac63cc326234b0f06b1e56b43e0753279 Partially-Implements: blueprint replace-config-external
21 lines
472 B
Bash
Executable File
21 lines
472 B
Bash
Executable File
#!/bin/bash
|
|
set -o errexit
|
|
|
|
# Loading common functions
|
|
source /opt/kolla/kolla-common.sh
|
|
source /opt/kolla/config/config-galera.sh
|
|
|
|
chown mysql: /var/lib/mysql
|
|
|
|
# This catches all cases of the BOOTSTRAP variable being set, including empty
|
|
if [[ "${!KOLLA_BOOTSTRAP[@]}" ]] && [[ ! -e /var/lib/mysql/cluster.exists ]]; then
|
|
ARGS="--wsrep-new-cluster"
|
|
touch /var/lib/mysql/cluster.exists
|
|
populate_db
|
|
bootstrap_db
|
|
exec $CMD $ARGS
|
|
exit 0
|
|
fi
|
|
|
|
exec $CMD
|