mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-22 16:20:52 +01:00
27 lines
584 B
Bash
Executable File
27 lines
584 B
Bash
Executable File
#!/bin/bash
|
|
|
|
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"
|
|
|
|
|
|
set_erlang_cookie() {
|
|
chmod 600 ${ERLANGCOOKIEFILE}
|
|
log "Set erlang cookie to ${ERLANG_COOKIE}..."
|
|
echo ${ERLANG_COOKIE} > ${ERLANGCOOKIEFILE}
|
|
chmod 400 ${ERLANGCOOKIEFILE}
|
|
}
|
|
|
|
|
|
file_exist ${FIRST_START_DONE_FILE} \
|
|
&& exit 0
|
|
|
|
|
|
# set erlang cookie if ERLANG_COOKIE is set in environemt
|
|
is_set ${ERLANG_COOKIE} \
|
|
&& set_erlang_cookie
|
|
|
|
|
|
exit 0
|