|
|
|
@ -22,37 +22,23 @@
|
|
|
|
|
OPENIM_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
|
|
|
|
|
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 execute_scripts() {
|
|
|
|
|
for script_path in "${OPENIM_SERVER_SCRIPT_START_LIST[@]}"; do
|
|
|
|
|
# Extract the script name without extension for argument generation.
|
|
|
|
|
script_name_with_prefix=$(basename "$script_path" .sh)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Remove the "openim-" prefix.
|
|
|
|
|
script_name=${script_name_with_prefix#openim-}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Construct the argument based on the script name.
|
|
|
|
|
arg="openim::${script_name}::start"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Check if the script file exists and is executable.
|
|
|
|
|
if [[ -x "$script_path" ]]; then
|
|
|
|
|
openim::log::status "Starting script: ${script_path##*/}" # Log the script name.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Execute the script with the constructed argument.
|
|
|
|
|
result=$("$script_path" "$arg")
|
|
|
|
|
if [[ $? -ne 0 ]]; then
|
|
|
|
@ -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
|
|
|
|
|
TOOLS_START_SCRIPTS_PATH=${START_SCRIPTS_PATH}/openim-tools.sh
|
|
|
|
|
|
|
|
|
|