From: Gary Wu Date: Fri, 19 Jan 2018 23:10:37 +0000 (-0800) Subject: Delete Designate DNS zones during teardown X-Git-Tag: sniroemulator-1.0.0~305 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=3c18c54006bc7e869b2eb1196a655fad85d47078;p=integration.git Delete Designate DNS zones during teardown Change-Id: I2df8f72c0e83e4ad2a07b49aa6ceab5608c395c1 Issue-ID: INT-278 Signed-off-by: Gary Wu --- diff --git a/test/ete/scripts/teardown-onap.sh b/test/ete/scripts/teardown-onap.sh index 0d007c5d6..60bfa638f 100755 --- a/test/ete/scripts/teardown-onap.sh +++ b/test/ete/scripts/teardown-onap.sh @@ -11,7 +11,7 @@ $WORKSPACE/test/ete/scripts/dns-zones/delete-dns-zones.sh $OS_PROJECT_NAME sleep 1 # delete all Desigate DNS zones -ZONES=$(openstack zone list -c "Stack Name" -f value) +ZONES=$(openstack zone list -c "id" -f value) for ZONE in ${ZONES}; do openstack zone delete $ZONE done