Lines Matching full:tar
53 """Create a (possibly compressed) tar file from all the files under
63 The output tar file will be named 'base_dir' + ".tar", possibly plus
77 archive_name = base_name + '.tar'
86 log.info('Creating tar archive')
101 tar = tarfile.open(archive_name, 'w|%s' % tar_compression[compress])
103 tar.add(base_dir, filter=_set_uid_gid)
105 tar.close()
176 'gztar': (make_tarball, [('compress', 'gzip')], "gzip'ed tar-file"),
177 'bztar': (make_tarball, [('compress', 'bzip2')], "bzip2'ed tar-file"),
178 'ztar': (make_tarball, [('compress', 'compress')], "compressed tar file"),
179 'tar': (make_tarball, [('compress', None)], "uncompressed tar file"),
195 """Create an archive file (eg. zip or tar).
198 extension; 'format' is the archive format: one of "zip", "tar", "ztar",
208 'owner' and 'group' are used when creating a tar archive. By default,