From 41167f39a130a6c9e2ffe29956447b477e3e0113 Mon Sep 17 00:00:00 2001 From: hms Date: Wed, 3 Feb 2021 14:56:18 -0800 Subject: [PATCH] testing sed replace --- update-NebulaNodeCert | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/update-NebulaNodeCert b/update-NebulaNodeCert index 98f7f85..e42c58b 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}"