From 1169e13297f9fa4c3c4349c0a3dd956a7318394e Mon Sep 17 00:00:00 2001 From: hms Date: Wed, 3 Feb 2021 14:57:00 -0800 Subject: [PATCH] testing var array for groups --- update-NebulaNodeCert | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/update-NebulaNodeCert b/update-NebulaNodeCert index e42c58b..25d5f91 100644 --- a/update-NebulaNodeCert +++ b/update-NebulaNodeCert @@ -35,7 +35,7 @@ set -- "${POSITIONAL[@]}" # restore positional parameters 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') -NODEGROUPS=$(${NEBULACERTBINPATH} print -path ${CERTPATH} -json | jq -s --compact-output .[].details.groups | sed 's/[]["]//g' | sed 's/,/ /g') +NODEGROUPS=($(${NEBULACERTBINPATH} print -path ${CERTPATH} -json | jq -s --compact-output .[].details.groups | sed 's/[]["]//g' | sed 's/,/ /g')) echo "Node Name: ${NODENAME}" echo "Node IPs: ${NODEIPS}"