diff options
author | David Kalnischkies <david@kalnischkies.de> | 2016-05-27 12:08:32 +0200 |
---|---|---|
committer | David Kalnischkies <david@kalnischkies.de> | 2016-05-27 14:08:44 +0200 |
commit | 124e6916b7b02984803ff8217e8163947aae2882 (patch) | |
tree | c1eb71e8091c5d21fa757e5b94bcb82a3294c17f /doc/examples/apt-ftparchive.conf | |
parent | cb6020cdfea3d6dec6f6ad13843ab46f0c10d562 (diff) |
fix and document on the fly compressor config
libapt allows to configure compressors to be used by its system via
configuration implemented in 03bef78461c6f443187b60799402624326843396,
but that was never really documented and also only partly working, which
also explains why the tests weren't using it…
Diffstat (limited to 'doc/examples/apt-ftparchive.conf')
-rw-r--r-- | doc/examples/apt-ftparchive.conf | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/examples/apt-ftparchive.conf b/doc/examples/apt-ftparchive.conf index 0d245c0af..0e8bcb2ce 100644 --- a/doc/examples/apt-ftparchive.conf +++ b/doc/examples/apt-ftparchive.conf @@ -7,11 +7,11 @@ Dir { CacheDir "."; }; -// Create Packages, Packages.gz and Packages.bz2, remove what you don't need +// Create Packages, Packages.gz and Packages.xz, remove/add as needed Default { - Packages::Compress ". gzip bzip2"; - Sources::Compress ". gzip bzip2"; - Contents::Compress ". gzip bzip2"; + Packages::Compress ". gzip xz"; + Sources::Compress ". gzip xz"; + Contents::Compress ". gzip xz"; }; // Includes the main section. You can structure the directory tree under |