mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-12-03 10:52:33 +08:00
rm set error
This commit is contained in:
parent
84e916e352
commit
b0bcbb6ece
@ -22,37 +22,23 @@
|
|||||||
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() {
|
||||||
for script_path in "${OPENIM_SERVER_SCRIPT_START_LIST[@]}"; do
|
for script_path in "${OPENIM_SERVER_SCRIPT_START_LIST[@]}"; do
|
||||||
# Extract the script name without extension for argument generation.
|
# Extract the script name without extension for argument generation.
|
||||||
script_name_with_prefix=$(basename "$script_path" .sh)
|
script_name_with_prefix=$(basename "$script_path" .sh)
|
||||||
|
|
||||||
# Remove the "openim-" prefix.
|
# Remove the "openim-" prefix.
|
||||||
script_name=${script_name_with_prefix#openim-}
|
script_name=${script_name_with_prefix#openim-}
|
||||||
|
|
||||||
# Construct the argument based on the script name.
|
# Construct the argument based on the script name.
|
||||||
arg="openim::${script_name}::start"
|
arg="openim::${script_name}::start"
|
||||||
|
|
||||||
# Check if the script file exists and is executable.
|
# Check if the script file exists and is executable.
|
||||||
if [[ -x "$script_path" ]]; then
|
if [[ -x "$script_path" ]]; then
|
||||||
openim::log::status "Starting script: ${script_path##*/}" # Log the script name.
|
openim::log::status "Starting script: ${script_path##*/}" # Log the script name.
|
||||||
|
|
||||||
# Execute the script with the constructed argument.
|
# Execute the script with the constructed argument.
|
||||||
result=$("$script_path" "$arg")
|
result=$("$script_path" "$arg")
|
||||||
if [[ $? -ne 0 ]]; then
|
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
|
# 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
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user