From dd956d899c5d31f73bd258558f9c0f3030a111dd Mon Sep 17 00:00:00 2001 From: Rod Smith Date: Tue, 19 Sep 2017 14:08:03 -0400 Subject: Fixed virtualization script to use correct URL when a URL to a .tar_gz file is specified as the virtualization image. --- bin/virtualization | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/virtualization b/bin/virtualization index b67a5fa..17ab9b7 100755 --- a/bin/virtualization +++ b/bin/virtualization @@ -292,7 +292,8 @@ class KVMTest(object): if ( url.path.endswith('/') or url.path == '' or - not url.path.endswith(".img") + not (url.path.endswith(".img") or + url.path.endswith(".tar_gz")) ): # If we have a relative URL (local copies of official images) # http://192.168.0.1/ or http://192.168.0.1/images/ -- cgit v1.2.3