Lines Matching full:tar
57 """Create a (possibly compressed) tar file from all the files under
67 The output tar file will be named 'base_dir' + ".tar", possibly plus
83 archive_name = base_name + '.tar'
92 log.info('Creating tar archive')
107 tar = tarfile.open(archive_name, 'w|%s' % tar_compression[compress])
109 tar.add(base_dir, filter=_set_uid_gid)
111 tar.close()
188 'gztar': (make_tarball, [('compress', 'gzip')], "gzip'ed tar-file"),
189 'bztar': (make_tarball, [('compress', 'bzip2')], "bzip2'ed tar-file"),
190 'xztar': (make_tarball, [('compress', 'xz')], "xz'ed tar-file"),
191 'ztar': (make_tarball, [('compress', 'compress')], "compressed tar file"),
192 'tar': (make_tarball, [('compress', None)], "uncompressed tar file"),
208 """Create an archive file (eg. zip or tar).
211 extension; 'format' is the archive format: one of "zip", "tar", "gztar",
221 'owner' and 'group' are used when creating a tar archive. By default,