Commit 8f4918e4 by Szeberényi Imre

Merge branch 'import_qcow_no_convert' into 'master'

Don't convert imported image if it is already qcow2

See merge request !18
parents 349cb3f5 5d42a07f
import shutil
import json
import os
import subprocess
......@@ -270,8 +272,15 @@ class Disk(object):
r = requests.get(url, stream=True)
downloaded_file = os.path.join(self.dir, url.split('/')[-1])
with open(downloaded_file, 'wb') as f:
f.write(r.content)
for chunk in r.iter_content(chunk_size=8192):
f.write(chunk)
with magic.Magic() as m:
ftype = m.id_filename(downloaded_file)
if 'qcow' in ftype.lower():
shutil.move(downloaded_file, self.get_path())
else:
cmdline = ['qemu-img',
'convert',
'-O', 'qcow2',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment