From 5f36226babfced228ac9a3fd5db028ee1428b4ad Mon Sep 17 00:00:00 2001 From: David Schroeder Date: Tue, 14 Nov 2023 16:07: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 e60f11a0..19d1ec66 100755 --- a/nodemgmt-scripts.sh +++ b/nodemgmt-scripts.sh @@ -539,7 +539,7 @@ UPDATE_DYNDNS(){ echo -e "${idsCL[Cyan]}${OLDIP}" echo -en "${idsCL[White]}Current WAN IP : " NEWIP=`dig +short myip.opendns.com @resolver1.opendns.com +time=2` - echo -e "${idsCL[Green]}${NEWIP}" + echo -e "${idsCL[LightGreen]}${NEWIP}" echo if ([ "${OLDIP}" != "" ] && [ "${NEWIP}" != "" ] && [[ "${OLDIP}" != *";"* ]] && [[ "${NEWIP}" != *";"* ]]) && ([ "${OLDIP}" != "${NEWIP}" ] || [ ${FORCE} -eq 1 ]); then @@ -587,7 +587,7 @@ UPDATE_DYNDNS(){ elif [ "${NEWIP}" == "" ]; then echo -e "${idsCL[LightRed]}Could not get Current WAN IP${idsCL[Default]}" else - echo -e "${idsCL[Yellow]}'${idsCL[LightCyan]}${LOCATION^^}${idsCL[Yellow]}' WAN IP has not changed${idsCL[Default]}" + echo -e "${idsCL[Yellow]}'${idsCL[Green]}${LOCATION^^}${idsCL[Yellow]}' WAN IP has not changed${idsCL[Default]}" fi else [ "${LOCATION}" == "" ] && echo -e "\n${idsCL[Red]}No DYNDNS location specified" || echo -e "\n${idsCL[Red]}DYNDNS location '${LOCATION}' not recognized"