Parcourir la source

added sed [, ], and " stripping

master
HMSheets il y a 3 ans
Parent
révision
70e4eeca5d
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. +2
    -2
      update-NebulaNodeCert

+ 2
- 2
update-NebulaNodeCert Voir le fichier

@@ -33,8 +33,8 @@ set -- "${POSITIONAL[@]}" # restore positional parameters
# echo "IP Address = ${IPADDRESS}"
#fi

NODENAME=$(${NEBULACERTBINPATH} print -path ${CERTPATH} -json | jq -s .[].details.name)
NODEIPS=$(${NEBULACERTBINPATH} print -path ${CERTPATH} -json | jq -s --compact-output .[].details.ips)
NODENAME=$(${NEBULACERTBINPATH} print -path ${CERTPATH} -json | jq -s .[].details.name | sed 's/["]//g')
NODEIPS=$(${NEBULACERTBINPATH} print -path ${CERTPATH} -json | jq -s --compact-output .[].details.ips | sed 's/[\]\["]//g')

echo "Node Name: ${NODENAME}"
echo "Node IPs: ${NODEIPS}"

Chargement…
Annuler
Enregistrer