Drop gzip flag from tar command for OVF archives
Fixes bug 1154253 Change-Id: I3880d9b187dc25d2ff44fe502eec4d1e0bce4218
This commit is contained in:
@@ -345,7 +345,7 @@ def extract_tarball(fileobj, path, callback=None):
|
||||
:param path: path to extract tarball into
|
||||
:param callback: optional callback to call on each chunk read
|
||||
"""
|
||||
tar_cmd = "tar -zx --directory=%(path)s" % locals()
|
||||
tar_cmd = "tar -x --directory=%(path)s" % locals()
|
||||
tar_proc = make_subprocess(tar_cmd, stderr=True, stdin=True)
|
||||
|
||||
while True:
|
||||
|
||||
Reference in New Issue
Block a user