diff --git a/scripts-new/check.sh b/scripts-new/check.sh index eb6028aa2..a0b066e5a 100644 --- a/scripts-new/check.sh +++ b/scripts-new/check.sh @@ -34,7 +34,7 @@ ret_val=$? if [ $ret_val -eq 0 ]; then echo "All services are running normally." else - echo "Some services are not running as expected." + echo "Some services are not running as expected. Details are as follows:" echo "$result" exit 1 fi diff --git a/scripts-new/start.sh b/scripts-new/start.sh index 7a2d27404..aa4079b93 100644 --- a/scripts-new/start.sh +++ b/scripts-new/start.sh @@ -29,18 +29,5 @@ fi result=$(start_binaries) -result=$(check_binaries_running) -ret_val=$? -if [ $ret_val -eq 0 ]; then - echo "All binaries are running." -else - echo "$result" - echo "abort..." - exit 1 -fi - - -print_listened_ports_by_binaries - - +$OPENIM_SCRIPTS/check.sh