diff options
| author | Jenkins <jenkins@review.openstack.org> | 2013-03-15 22:18:26 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2013-03-15 22:18:26 +0000 |
| commit | 0ca55dcccdd76181a3b9311945e0b99ae6381e53 (patch) | |
| tree | cce59a597fb3e79ba0dfb7cbbc8c4f10cbdd792c /plugins | |
| parent | 9dac4e69755154f7a4db3d1bb1167763e6417769 (diff) | |
| parent | 7f1b1b69d70a6c7ee37b0f8c907473ddf5c08cac (diff) | |
| download | nova-0ca55dcccdd76181a3b9311945e0b99ae6381e53.tar.gz nova-0ca55dcccdd76181a3b9311945e0b99ae6381e53.tar.xz nova-0ca55dcccdd76181a3b9311945e0b99ae6381e53.zip | |
Merge "Revert 1154253 causes XenServer image compat issue"
Diffstat (limited to 'plugins')
| -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 850d6ab98..2a5d3d9ae 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 -x --directory=%(path)s" % locals() + tar_cmd = "tar -zx --directory=%(path)s" % locals() tar_proc = make_subprocess(tar_cmd, stderr=True, stdin=True) while True: |
