mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-22 16:20:52 +01:00
15 lines
346 B
Bash
Executable File
15 lines
346 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
# Write a first-start-done file
|
|
|
|
source "${EJABBERD_HOME}/scripts/lib/base_config.sh"
|
|
source "${EJABBERD_HOME}/scripts/lib/config.sh"
|
|
source "${EJABBERD_HOME}/scripts/lib/base_functions.sh"
|
|
source "${EJABBERD_HOME}/scripts/lib/functions.sh"
|
|
|
|
|
|
if [ ! -e "${FIRST_START_DONE_FILE}" ]; then
|
|
touch ${FIRST_START_DONE_FILE}
|
|
fi
|