X-Git-Url: https://gerrit.linuxfoundation.org/infra/gitweb?a=blobdiff_plain;f=shell%2Fopenstack-cleanup-orphaned-ports.sh;h=080b5907c50a839c6953b5237f35430d039538e0;hb=refs%2Ftags%2Fv0.67.1;hp=3030fdf2ec78a36c78d7118cb175ef8ce3629477;hpb=6b4eba38370203ded897068371a4e50255ef588b;p=releng%2Fglobal-jjb.git diff --git a/shell/openstack-cleanup-orphaned-ports.sh b/shell/openstack-cleanup-orphaned-ports.sh index 3030fdf2..080b5907 100644 --- a/shell/openstack-cleanup-orphaned-ports.sh +++ b/shell/openstack-cleanup-orphaned-ports.sh @@ -16,12 +16,12 @@ os_cloud="${OS_CLOUD:-vex}" set -eux -o pipefail mapfile -t os_ports_ts < <(openstack --os-cloud "$os_cloud" port list \ - -f value \ - -c ID \ - -c status \ - -c created_at \ - | grep -E DOWN \ - | awk -F' ' '{print $1 " " $3}') + -f value \ + -c ID \ + -c status \ + -c created_at \ + | grep -E DOWN \ + | awk -F' ' '{print $1 " " $3}') if [ ${#os_ports_ts[@]} -eq 0 ]; then echo "No orphaned ports found."