summaryrefslogtreecommitdiffstats
path: root/tests/ci/clean_images.sh
diff options
context:
space:
mode:
authorRoss Brattain <ross.b.brattain@intel.com>2017-03-20 01:52:25 -0700
committerRoss Brattain <ross.b.brattain@intel.com>2017-03-20 01:55:45 -0700
commit14172bb39e8e30f37ec5bb80be6b187ab6858e88 (patch)
treec859ea83117f3e261fca9789bf0bacb84ce8e206 /tests/ci/clean_images.sh
parent5fd91d3f700b43275170b7be148e902c5a88d2ac (diff)
Bugfix: remove vivid as it is EOL
Vivid is end of life, and thus not supported. Change-Id: Ia293fcd6fd2a3279a642a6dbbb7ad1811334c3e1 Signed-off-by: Ross Brattain <ross.b.brattain@intel.com>
Diffstat (limited to 'tests/ci/clean_images.sh')
-rwxr-xr-xtests/ci/clean_images.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ci/clean_images.sh b/tests/ci/clean_images.sh
index fa4a54df6..3579909c5 100755
--- a/tests/ci/clean_images.sh
+++ b/tests/ci/clean_images.sh
@@ -20,7 +20,7 @@ cleanup()
fi
for image in $(openstack image list | grep -e cirros-0.3.3 -e yardstick-image -e Ubuntu-14.04 \
- -e yardstick-vivid-kernel | awk '{print $2}'); do
+ | awk '{print $2}'); do
echo "Deleting image $image..."
openstack image delete $image || true
done