|
|
@ -22,20 +22,6 @@
|
|
|
|
OPENIM_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
|
|
|
|
OPENIM_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
|
|
|
|
source "${OPENIM_ROOT}/scripts/install/common.sh"
|
|
|
|
source "${OPENIM_ROOT}/scripts/install/common.sh"
|
|
|
|
|
|
|
|
|
|
|
|
openim::log::info "\n# Begin to start all openim service scripts"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
set +o errexit
|
|
|
|
|
|
|
|
openim::golang::check_openim_binaries
|
|
|
|
|
|
|
|
if [[ $? -ne 0 ]]; then
|
|
|
|
|
|
|
|
openim::log::error "OpenIM binaries are not found. Please run 'make build' to build binaries."
|
|
|
|
|
|
|
|
"${OPENIM_ROOT}"/scripts/build-all-service.sh
|
|
|
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
"${OPENIM_ROOT}"/scripts/init-config.sh --skip
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
echo "You need to start the following scripts in order: ${OPENIM_SERVER_SCRIPTARIES[@]}"
|
|
|
|
|
|
|
|
openim::log::install_errexit
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Function to execute the scripts.
|
|
|
|
# Function to execute the scripts.
|
|
|
|
function execute_scripts() {
|
|
|
|
function execute_scripts() {
|
|
|
@ -69,6 +55,23 @@ function execute_scripts() {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
openim::log::info "\n# Begin to start all openim service scripts"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
openim::golang::check_openim_binaries
|
|
|
|
|
|
|
|
if [[ $? -ne 0 ]]; then
|
|
|
|
|
|
|
|
openim::log::error "OpenIM binaries are not found. Please run 'make build' to build binaries."
|
|
|
|
|
|
|
|
"${OPENIM_ROOT}"/scripts/build-all-service.sh
|
|
|
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
"${OPENIM_ROOT}"/scripts/init-config.sh --skip
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
echo "You need to start the following scripts in order: ${OPENIM_SERVER_SCRIPTARIES[@]}"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# TODO Prelaunch tools, simple for now, can abstract functions later
|
|
|
|
# TODO Prelaunch tools, simple for now, can abstract functions later
|
|
|
|
TOOLS_START_SCRIPTS_PATH=${START_SCRIPTS_PATH}/openim-tools.sh
|
|
|
|
TOOLS_START_SCRIPTS_PATH=${START_SCRIPTS_PATH}/openim-tools.sh
|
|
|
|
|
|
|
|
|
|
|
|