diff options
author | PMR <pmr@pmr-lander> | 2017-09-19 18:52:15 +0000 |
---|---|---|
committer | PMR <pmr@pmr-lander> | 2017-09-19 18:52:15 +0000 |
commit | 8650fceb4be9424814c36e505c818256f94e73fd (patch) | |
tree | dfccb193c9724fb3696699a7bbbc974edfa18e9d | |
parent | a2cbc59e55ed21f755f45a5db2df5695a2220315 (diff) | |
parent | dd956d899c5d31f73bd258558f9c0f3030a111dd (diff) |
Merge #331008 from ~rodsmith/plainbox-provider-checkbox:fix-arm64-virt
-rwxr-xr-x | bin/virtualization | 3 |
1 files changed, 2 insertions, 1 deletions
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/ |