mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-22 16:20:52 +01:00
22 lines
417 B
Bash
Executable File
22 lines
417 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
source "${EJABBERD_HOME}/docker/lib/base_config.sh"
|
|
source "${EJABBERD_HOME}/docker/lib/config.sh"
|
|
source "${EJABBERD_HOME}/docker/lib/base_functions.sh"
|
|
source "${EJABBERD_HOME}/docker/lib/functions.sh"
|
|
|
|
|
|
leave_cluster() {
|
|
log "Leave cluster..."
|
|
rm ${CLUSTER_NODE_FILE}
|
|
NO_WARNINGS=true ${EJABBERDCTL} leave_cluster
|
|
}
|
|
|
|
|
|
file_exist ${CLUSTER_NODE_FILE} \
|
|
&& leave_cluster
|
|
|
|
|
|
exit 0
|