From 47cd11b0882672d977a36c97bc3c3a4c82b309f8 Mon Sep 17 00:00:00 2001 From: David Schroeder Date: Wed, 22 Nov 2023 19:39:10 -0600 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 f551889b..0d441aca 100755 --- a/nodemgmt-scripts.sh +++ b/nodemgmt-scripts.sh @@ -424,7 +424,7 @@ VCENTER-SSL(){ if ssh -q root@${NM_VCHOSTNAME} [ ! -d /root/.acme.sh ]; then echo -e "${idsCL[Yellow]}Installing acme.sh scripts on vCenter${idsCL[Default]}\n" - ssh root@${NM_VCHOSTNAME} "wget -O - https://get.acme.sh | sh" + ssh -q root@${NM_VCHOSTNAME} "wget -O - https://get.acme.sh | sh" echo else echo -e "${idsCL[Green]}Verified acme.sh scripts are installed on vCenter${idsCL[Default]}\n" @@ -439,7 +439,7 @@ export PDNS_Ttl=60 " >> /tmp/vcenter-update-ssl.sh echo "HERE:" scp /tmp/vcenter-update-ssl.sh root@${NM_VCHOSTNAME}:/tmp/vcenter-update-ssl.sh - ssh root@${NM_VCHOSTNAME} "/tmp/vcenter-update-ssl.sh" + ssh -q root@${NM_VCHOSTNAME} "bash /tmp/vcenter-update-ssl.sh"