X-Git-Url: https://git.saurik.com/apt.git/blobdiff_plain/8e4c3f0a42664b8c37cc2e0de285849fbf118e11..1afd369d00f2f9272462ffc6c6e24f293a81459e:/doc/apt.conf.5.xml
diff --git a/doc/apt.conf.5.xml b/doc/apt.conf.5.xml
index 3cf3136d3..42119baa5 100644
--- a/doc/apt.conf.5.xml
+++ b/doc/apt.conf.5.xml
@@ -386,10 +386,12 @@ DPkg::Pre-Install-Pkgs {"/usr/sbin/dpkg-preconfigure --apt";};
Acquire::http::AllowRedirect controls whether APT will follow
redirects, which is enabled by default.
- The used bandwidth can be limited with Acquire::http::Dl-Limit
- which accepts integer values in kilobytes. The default value is 0 which deactivates
- the limit and tries to use all available bandwidth (note that this option implicitly
- disables downloading from multiple servers at the same time.)
+ The used bandwidth can be limited with
+ Acquire::http::Dl-Limit which accepts integer
+ values in kilobytes per second. The default value is 0 which
+ deactivates the limit and tries to use all available bandwidth.
+ Note that this option implicitly disables downloading from
+ multiple servers at the same time.Acquire::http::User-Agent can be used to set a different
User-Agent for the http download method as some proxies allow access for clients
@@ -686,13 +688,28 @@ DPkg::Pre-Install-Pkgs {"/usr/sbin/dpkg-preconfigure --apt";};
options this must be specified in list notation. The commands
are invoked in order using /bin/sh; should any fail APT
will abort. APT will pass the filenames of all .deb files it is going to
- install to the commands, one per line on standard input.
+ install to the commands, one per line on the requested file descriptor, defaulting
+ to standard input.
- Version 2 of this protocol dumps more information, including the
+ Version 2 of this protocol dumps more information, including the
protocol version, the APT configuration space and the packages, files
- and versions being changed. Version 2 is enabled by setting
- DPkg::Tools::options::cmd::Version to 2. cmd is a
- command given to Pre-Install-Pkgs.
+ and versions being changed. Version 3 adds the architecture and MultiArch
+ flag to each version being dumped.
+
+ The version of the protocol to be used for the command
+ cmd can be chosen by setting
+ DPkg::Tools::options::cmd::Version
+ accordingly, the default being version 1. If APT isn't supporting the requested
+ version it will send the information in the highest version it has support for instead.
+
+
+ The file descriptor to be used to send the information can be requested with
+ DPkg::Tools::options::cmd::InfoFD
+ which defaults to 0 for standard input and is available since
+ version 0.9.11. Support for the option can be detected by looking for the environment
+ variable APT_HOOK_INFO_FD which contains the number of the used
+ file descriptor as a confirmation.
+