X-Git-Url: https://git.saurik.com/apt.git/blobdiff_plain/57722714255118560c98b3245413ff5f693b993c..36fd3a5128330620bebd5897d747f5a898f1f48b:/doc/apt.conf.5.xml
diff --git a/doc/apt.conf.5.xml b/doc/apt.conf.5.xml
index 2b2430c83..e0ce0db40 100644
--- a/doc/apt.conf.5.xml
+++ b/doc/apt.conf.5.xml
@@ -27,6 +27,7 @@
apt.conf
5
+ APT
@@ -203,8 +204,9 @@ DPkg::Pre-Install-Pkgs {"/usr/sbin/dpkg-preconfigure --apt";};
standard form of http://[[user][:pass]@]host[:port]/. Per
host proxies can also be specified by using the form
http::Proxy::<host> with the special keyword DIRECT
- meaning to use no proxies. The http_proxy environment variable
- will override all settings.
+ meaning to use no proxies. If no one of the above settings is specified,
+ http_proxy environment variable
+ will be used.
Three settings are provided for cache control with HTTP/1.1 compliant
proxy caches. No-Cache tells the proxy to not use its cached
@@ -252,9 +254,13 @@ DPkg::Pre-Install-Pkgs {"/usr/sbin/dpkg-preconfigure --apt";};
ftp
- FTP URIs; ftp::Proxy is the default proxy server to use. It is in the
- standard form of ftp://[[user][:pass]@]host[:port]/ and is
- overridden by the ftp_proxy environment variable. To use a ftp
+ FTP URIs; ftp::Proxy is the default ftp proxy to use. It is in the
+ standard form of ftp://[[user][:pass]@]host[:port]/. Per
+ host proxies can also be specified by using the form
+ ftp::Proxy::<host> with the special keyword DIRECT
+ meaning to use no proxies. If no one of the above settings is specified,
+ ftp_proxy environment variable
+ will be used. To use a ftp
proxy you will have to set the ftp::ProxyLogin script in the
configuration file. This entry specifies the commands to send to tell
the proxy server what to connect to. Please see
@@ -303,6 +309,20 @@ DPkg::Pre-Install-Pkgs {"/usr/sbin/dpkg-preconfigure --apt";};
+ CompressionTypes
+ List of compression types which are understood by the acquire methods.
+ Files like Packages can be available in various compression formats.
+ This list defines in which order the acquire methods will try to download these files.
+ Per default bzip2 compressed files will be prefered over
+ lzma, gzip and uncompressed files. The syntax for
+ the configuration fileentry is
+ Acquire::CompressionTypes::FileExtension "Methodname";
+ e.g. Acquire::CompressionTypes::bz2 "bzip2";
+ Note that at runtime the Dir::Bin::Methodname will
+ be checked: If this setting exists the method will only be used if this file exists, e.g. for
+ the bzip2 method above (the inbuilt) setting is Dir::Bin::bzip2 "/bin/bzip2";
+
+
@@ -337,6 +357,7 @@ DPkg::Pre-Install-Pkgs {"/usr/sbin/dpkg-preconfigure --apt";};
Binary programs are pointed to by Dir::Bin. Dir::Bin::Methods
specifies the location of the method handlers and gzip,
+ bzip2, lzma,
dpkg, apt-get dpkg-source
dpkg-buildpackage and apt-cache specify the location
of the respective programs.
@@ -822,7 +843,17 @@ is commented.
Files
- /etc/apt/apt.conf
+
+ /etc/apt/apt.conf
+ APT configuration file.
+ Configuration Item: Dir::Etc::Main.
+
+
+ /etc/apt/apt.conf.d/
+ APT configuration file fragments.
+ Configuration Item: Dir::Etc::Parts.
+
+
See Also