Optimizing scripts

pull/2100/head
skiffer-git 2 years ago
parent 8a24219a07
commit ad635f85fb

@ -111,4 +111,5 @@ else
fi fi
openim::util::find_process_ports ${OPENIM_ALL_SERVICE_LIBRARIES_NO_TRANSFER[@]} openim::util::find_process_ports ${OPENIM_ALL_SERVICE_LIBRARIES_NO_TRANSFER[@]}

@ -89,7 +89,7 @@ function openim::api::start_service() {
echo "Starting service with command: $cmd" echo "Starting service with command: $cmd"
#nohup $cmd >> "${LOG_FILE}" 2> >(tee -a "${STDERR_LOG_FILE}" "$TMP_LOG_FILE" >&2) & #nohup $cmd >> "${LOG_FILE}" 2> >(tee -a "${STDERR_LOG_FILE}" "$TMP_LOG_FILE" >&2) &
nohup ${cmd} >> "${LOG_FILE}" 2> >(tee -a "$TMP_LOG_FILE" | while read line; do echo -e "\e[31m${line}\e[0m"; done >&2) >/dev/null & nohup ${cmd} >> "${LOG_FILE}" 2> >(tee -a "$TMP_LOG_FILE" | while read line; do echo -e "\e[31m${line}\e[0m"; done >&2) >./tmp.log &
if [ $? -ne 0 ]; then if [ $? -ne 0 ]; then
openim::log::error_exit "Failed to start ${binary_name} on port ${service_port}." openim::log::error_exit "Failed to start ${binary_name} on port ${service_port}."
return 1 return 1

Loading…
Cancel
Save