X-Git-Url: https://gerrit.linuxfoundation.org/infra/gitweb?a=blobdiff_plain;f=shell%2Fopenstack-cleanup-orphaned-ports.sh;h=c25ba59f56377141fad61602145621c716aee312;hb=refs%2Ftags%2Fv0.81.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..c25ba59f 100644 --- a/shell/openstack-cleanup-orphaned-ports.sh +++ b/shell/openstack-cleanup-orphaned-ports.sh @@ -11,17 +11,24 @@ # Scans OpenStack for orphaned ports echo "---> Orphaned ports" +# shellcheck disable=SC1090 +source ~/lf-env.sh + os_cloud="${OS_CLOUD:-vex}" +lf-activate-venv --python python3 \ + python-heatclient \ + python-openstackclient + 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."