diff options
| author | Jenkins <jenkins@review.openstack.org> | 2013-03-15 19:26:39 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2013-03-15 19:26:39 +0000 |
| commit | dd2a861aaecaef8e533a88b65511a2ed83b091cb (patch) | |
| tree | b769406061f737446d9b776cb050884acc8052f2 | |
| parent | f14cd697c005f946886f90f7af8379c58e062ed1 (diff) | |
| parent | f5a2890621f7f579d860f09c69e0e4888e7df25b (diff) | |
| download | nova-dd2a861aaecaef8e533a88b65511a2ed83b091cb.tar.gz nova-dd2a861aaecaef8e533a88b65511a2ed83b091cb.tar.xz nova-dd2a861aaecaef8e533a88b65511a2ed83b091cb.zip | |
Merge "Drop gzip flag from tar command for OVF archives"
| -rw-r--r-- | plugins/xenserver/xenapi/etc/xapi.d/plugins/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/xenserver/xenapi/etc/xapi.d/plugins/utils.py b/plugins/xenserver/xenapi/etc/xapi.d/plugins/utils.py index 2a5d3d9ae..850d6ab98 100644 --- a/plugins/xenserver/xenapi/etc/xapi.d/plugins/utils.py +++ b/plugins/xenserver/xenapi/etc/xapi.d/plugins/utils.py @@ -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: |
