diff options
author | Ross Brattain <ross.b.brattain@intel.com> | 2017-03-20 01:52:25 -0700 |
---|---|---|
committer | Jing Lu <lvjing5@huawei.com> | 2017-03-22 08:12:55 +0000 |
commit | 2ee902070084ebec2f3bf3d5729a6766d634758d (patch) | |
tree | 5d2e790afa46313f3efa979945dcd6a4e1d14c3a /tests | |
parent | 59334b879dc479a1b3512c133160978f088d7511 (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>
(cherry picked from commit 14172bb39e8e30f37ec5bb80be6b187ab6858e88)
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/ci/clean_images.sh | 2 |
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 |