From 75a6e5c6018f496f021e939ea1b90e96460b3caa Mon Sep 17 00:00:00 2001 From: David Schroeder Date: Sun, 24 Nov 2019 18:47:49 -0600 Subject: [PATCH] Update nodemgmt-scripts.sh --- nodemgmt-scripts.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/nodemgmt-scripts.sh b/nodemgmt-scripts.sh index c5006606..1fe3a0af 100755 --- a/nodemgmt-scripts.sh +++ b/nodemgmt-scripts.sh @@ -1421,9 +1421,9 @@ NODEUPDATE() { spc1=${cw}-${#nip} until [ $c = ${spc1} ]; do spcb="${spcb} "; c=`expr $c + 1`; done echo -en "Updating MySQL-Manager${spca}($nip)${spcb}... ${idsCL[LightCyan]}NodeMGMT${idsCL[Default]} : " - #ssh root@${nip} "nodemgmt update q" + ssh root@${nip} "nodemgmt update q" echo -en "${idsCL[Green]}COMPLETE${idsCL[Default]} ... ${idsCL[LightCyan]}LinUPx${idsCL[Default]} : " - #ssh root@${nip} "runup runup" + ssh root@${nip} "runup runup" echo -e "${idsCL[Green]}COMPLETE${idsCL[Default]}" echo for NTYPE in "${NODE_TYPES[@]}"; do @@ -1441,9 +1441,9 @@ NODEUPDATE() { spc1=${cw}-${#nip} until [ $c = ${spc1} ]; do spcb="${spcb} "; c=`expr $c + 1`; done echo -en "Updating ${NM_NODETYPES[$NTYPE]}-Node${nid}${spca}($nip)${spcb}... ${idsCL[LightCyan]}NodeMGMT${idsCL[Default]} : " - #${NCMD} "nodemgmt update q" + ${NCMD} "nodemgmt update q" echo -en "${idsCL[Green]}COMPLETE${idsCL[Default]} ... ${idsCL[LightCyan]}LinUPx${idsCL[Default]} : " - #${NCMD} "runup runup" + ${NCMD} "runup runup" echo -e "${idsCL[Green]}COMPLETE${idsCL[Default]}" nid=`expr $nid + 1` done