diff --git a/config_tempest/config_tempest.py b/config_tempest/config_tempest.py index 28cddf28..8cbc90ce 100755 --- a/config_tempest/config_tempest.py +++ b/config_tempest/config_tempest.py @@ -1064,6 +1064,9 @@ def configure_discovered_services(conf, services): def _download_file(url, destination): + if os.path.exists(destination): + LOG.info("Image '%s' already fetched to '%s'.", url, destination) + return LOG.info("Downloading '%s' and saving as '%s'", url, destination) f = urllib2.urlopen(url) data = f.read()