From: Thanh Ha Date: Thu, 14 Dec 2017 21:33:04 +0000 (-0500) Subject: Print the name of the stack being deleted X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=commitdiff_plain;h=d21034a42282a2cd7bfcf89f72fced2130d1c313;p=releng%2Fbuilder.git Print the name of the stack being deleted Change-Id: Id7da06b3d91b4b60b6e5f5b477bcb4b716f65324 Signed-off-by: Thanh Ha --- diff --git a/jjb/opendaylight-infra-cleanup-stale-stacks.sh b/jjb/opendaylight-infra-cleanup-stale-stacks.sh index ff42ed03c8..6f6b38d675 100644 --- a/jjb/opendaylight-infra-cleanup-stale-stacks.sh +++ b/jjb/opendaylight-infra-cleanup-stale-stacks.sh @@ -46,6 +46,7 @@ done # Search for stacks that are not in use by either releng or sandbox silos and # delete them. for STACK_NAME in "${OS_STACKS[@]}"; do + echo "Deleting stack $STACK_NAME" STACK_STATUS=$(openstack stack show -f value -c "stack_status" "$STACK_NAME") if [[ "${ACTIVE_BUILDS[*]}" =~ $STACK_NAME ]]; then # No need to delete stacks if there exists an active build for them