From 6fd388da5744013a2dcb78cad4373ff027c0e03b Mon Sep 17 00:00:00 2001 From: David Schroeder Date: Sat, 4 Jun 2022 09:01:24 -0500 Subject: [PATCH] Update nodemgmt-scripts.sh --- nodemgmt-scripts.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nodemgmt-scripts.sh b/nodemgmt-scripts.sh index 96a8a371..01ab5de4 100755 --- a/nodemgmt-scripts.sh +++ b/nodemgmt-scripts.sh @@ -1710,10 +1710,10 @@ VCENTER-SSL(){ echo -e "${idsCL[Green]}Done${idsCL[Default]}" echo echo -en "${idsCL[LightCyan]}Stopping vCenter services... ${idsCL[Default]}" - ssh -i ~/.ssh/id_rsa root@vcenter.scity.us 'service-control --stop --all' + ssh -i ~/.ssh/id_rsa root@vcenter.scity.us 'service-control --stop --all >/dev/null 2>&1' echo -e "${idsCL[Green]}Done${idsCL[Default]}" echo -en "${idsCL[LightCyan]}Starting vCenter services... ${idsCL[Default]}" - ssh -i ~/.ssh/id_rsa root@vcenter.scity.us 'service-control --start --all' + ssh -i ~/.ssh/id_rsa root@vcenter.scity.us 'service-control --start --all >/dev/null 2>&1' echo -e "${idsCL[Green]}Done${idsCL[Default]}" echo echo -e "${idsCL[Green]}The vCenter certifcate has been updated${idsCL[Default]}"