Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion COT/vm_description/ovf/ovf.py
Original file line number Diff line number Diff line change
Expand Up @@ -2777,7 +2777,7 @@ def tar(self, ovf_descriptor, tar_file):
expected_size=file_ref.size)

# Be sure to dereference any links to the actual file content!
with tarfile.open(tar_file, 'w', dereference=True) as tarf:
with tarfile.open(tar_file, 'w', dereference=True, format=tarfile.GNU_FORMAT) as tarf:
# OVF is always first
logger.debug("Adding OVF descriptor %s to %s",
ovf_descriptor, tar_file)
Expand Down