Drop gzip flag from tar command for OVF archives

Fixes bug 1154253

Change-Id: I3880d9b187dc25d2ff44fe502eec4d1e0bce4218
This commit is contained in:
Greg Ball
2013-03-13 09:34:18 -05:00
parent 48d94a591a
commit f5a2890621
@@ -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: