Update status.inc

This commit is contained in:
2023-12-06 21:06:18 -06:00
parent dbd63fd416
commit bead29c391

View File

@@ -139,20 +139,22 @@ STATUS(){
## NODE SERVICE AND DOCKER CHECK
###################################
echo -en " ${idsCL[LightCyan]}Starting processes to collect node service & docker info : "
[ "${ST_ACTION}" != "check" ] && echo -en " ${idsCL[LightCyan]}Starting processes to collect node service & docker info : "
for NTYPE in "${ntypesel[@]}"; do
STATUS_NODE ${NTYPE} > ${STATUSRUN_TMPFOLDER}/status-check.${NTYPE}.running &
done
[ "${ST_ACTION}" != "check" ] && echo -e "${idsCL[Green]}Done${idsCL[Default]}\n"
nc_count=0; completed=false
until [ "${completed}" == "true" ]; do
for nodestatus in ${STATUSRUN_TMPFOLDER}/status-check.*.done; do
NTS=$(grep -oP '(?<=status-check.).*?(?=.done)' <<< "${nodestatus}")
if [ "${NTS}" != "*" ]; then
# echo -e "$(cat ${STATUSRUN_TMPFOLDER}/status-check.${NTS}.running)"
echo -e "$(cat ${STATUSRUN_TMPFOLDER}/status-check.${NTS}.running)"
rm -f ${STATUSRUN_TMPFOLDER}/status-check.${NTS}.done
((nc_count++))
echo "${NTS} == ${nc_count} == ${nodestatus}"
# echo "${NTS} == ${nc_count} == ${nodestatus}"
fi
done
[ ${nc_count} -eq ${#ntypesel[@]} ] && completed=true || sleep 1s