From b4451ed3fc3a0cc56856cb89c7684f4462423c29 Mon Sep 17 00:00:00 2001 From: David Schroeder Date: Sun, 16 Mar 2025 10:16:01 -0500 Subject: [PATCH] Update nodemgmt-scripts.sh --- nodemgmt-scripts.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nodemgmt-scripts.sh b/nodemgmt-scripts.sh index 9586db5d..b2d3ffcd 100755 --- a/nodemgmt-scripts.sh +++ b/nodemgmt-scripts.sh @@ -1264,7 +1264,7 @@ GETSKIP(){ c=0; spca=''; spc1=`expr ${cw} - ${#NODE}`; until [ $c = ${spc1} ]; do spca="${spca} "; c=`expr $c + 1`; done echo -en "Checking ${NODE}${spca}" >> ${tmpfile}.running if [ $(CHECK_HOST ${nip}) != false ]; then - ${NCMD} [ -f ${NM_TMPFOLDER}/.skip ] && echo -e "${idsCL[Yellow]}SKIPPED${idsCL[Default]}" >> ${tmpfile}.running || echo "${idsCL[LightCyan]}NOT Skipped${idsCL[Default]}" >> ${tmpfile}.running + ${NCMD} [ -f ${NM_TMPFOLDER}/.skip ] && echo -e "${idsCL[LightRed]}SKIPPED${idsCL[Default]}" >> ${tmpfile}.running || echo "${idsCL[LightCyan]}NOT Skipped${idsCL[Default]}" >> ${tmpfile}.running else echo -e "${idsCL[Yellow]}OFFLINE${idsCL[Default]}" >> ${tmpfile}.running fi