auto-generate the correct <date> translation
[ntk/apt.git] / doc / apt.conf.5.xml
CommitLineData
24f6490f
AL
1<?xml version="1.0" encoding="utf-8" standalone="no"?>
2<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
3 "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd" [
4
5<!ENTITY % aptent SYSTEM "apt.ent">
6%aptent;
7
0c1a7101
DK
8<!ENTITY % aptverbatiment SYSTEM "apt-verbatim.ent">
9%aptverbatiment;
10
24f6490f
AL
11]>
12
13<refentry>
5e80de29
AL
14
15 <refentryinfo>
16 &apt-author.jgunthorpe;
17 &apt-author.team;
be1b8568
EL
18 <author>
19 <firstname>Daniel</firstname>
20 <surname>Burrows</surname>
21 <contrib>Initial documentation of Debug::*.</contrib>
22 <email>dburrows@debian.org</email>
23 </author>
5e80de29
AL
24 &apt-email;
25 &apt-product;
26 <!-- The last update date -->
45fb8bf7 27 <date>2012-05-21T00:00:00Z</date>
5e80de29 28 </refentryinfo>
24f6490f
AL
29
30 <refmeta>
31 <refentrytitle>apt.conf</refentrytitle>
32 <manvolnum>5</manvolnum>
f0599b9c 33 <refmiscinfo class="manual">APT</refmiscinfo>
24f6490f
AL
34 </refmeta>
35
36 <!-- Man page title -->
37 <refnamediv>
38 <refname>apt.conf</refname>
39 <refpurpose>Configuration file for APT</refpurpose>
40 </refnamediv>
41
42 <refsect1><title>Description</title>
e29a6bb1
DK
43 <para><filename>apt.conf</filename> is the main configuration file for
44 the APT suite of tools, but by far not the only place changes to options
45 can be made. All tools therefore share the configuration files and also
46 use a common command line parser to provide a uniform environment.</para>
47 <orderedlist>
48 <para>When an APT tool starts up it will read the configuration files
49 in the following order:</para>
50 <listitem><para>the file specified by the <envar>APT_CONFIG</envar>
51 environment variable (if any)</para></listitem>
52 <listitem><para>all files in <literal>Dir::Etc::Parts</literal> in
1fc8c922 53 alphanumeric ascending order which have either no or "<literal>conf</literal>"
e29a6bb1 54 as filename extension and which only contain alphanumeric,
7376837d
DK
55 hyphen (-), underscore (_) and period (.) characters.
56 Otherwise APT will print a notice that it has ignored a file if the file
57 doesn't match a pattern in the <literal>Dir::Ignore-Files-Silently</literal>
58 configuration list - in this case it will be silently ignored.</para></listitem>
e29a6bb1
DK
59 <listitem><para>the main configuration file specified by
60 <literal>Dir::Etc::main</literal></para></listitem>
61 <listitem><para>the command line options are applied to override the
62 configuration directives or to load even more configuration files.</para></listitem>
63 </orderedlist>
64 </refsect1>
65 <refsect1><title>Syntax</title>
24f6490f 66 <para>The configuration file is organized in a tree with options organized into
5f4331c4 67 functional groups. Option specification is given with a double colon
24f6490f 68 notation, for instance <literal>APT::Get::Assume-Yes</literal> is an option within
5f4331c4 69 the APT tool group, for the Get tool. Options do not inherit from their
24f6490f
AL
70 parent groups.</para>
71
e3a1f08d 72 <para>Syntactically the configuration language is modeled after what the ISC tools
7f1bc985
EL
73 such as bind and dhcp use. Lines starting with
74 <literal>//</literal> are treated as comments (ignored), as well as all text
75 between <literal>/*</literal> and <literal>*/</literal>, just like C/C++ comments.
24f6490f 76 Each line is of the form
5f4331c4 77 <literal>APT::Get::Assume-Yes "true";</literal>. The trailing
52f2e1da
JAK
78 semicolon and the quotes are required. The value must be on one line, and
79 there is no kind of string concatenation. It must not include inside quotes.
80 The behavior of the backslash "\" and escaped characters inside a value is
31f113db
JAK
81 undefined and it should not be used. An option name may include
82 alphanumerical characters and the "/-:._+" characters. A new scope can
83 be opened with curly braces, like:</para>
24f6490f
AL
84
85<informalexample><programlisting>
86APT {
87 Get {
88 Assume-Yes "true";
89 Fix-Broken "true";
90 };
91};
92</programlisting></informalexample>
93
94 <para>with newlines placed to make it more readable. Lists can be created by
d82cdf73 95 opening a scope and including a single string enclosed in quotes followed by a
24f6490f
AL
96 semicolon. Multiple entries can be included, each separated by a semicolon.</para>
97
98<informalexample><programlisting>
99DPkg::Pre-Install-Pkgs {"/usr/sbin/dpkg-preconfigure --apt";};
100</programlisting></informalexample>
101
102 <para>In general the sample configuration file in
103 <filename>&docdir;examples/apt.conf</filename> &configureindex;
104 is a good guide for how it should look.</para>
105
fb3b7ef0
LB
106 <para>The names of the configuration items are not case-sensitive. So in the previous example
107 you could use <literal>dpkg::pre-install-pkgs</literal>.</para>
108
63fc5550
DK
109 <para>Names for the configuration items are optional if a list is defined as it can be see in
110 the <literal>DPkg::Pre-Install-Pkgs</literal> example above. If you don't specify a name a
111 new entry will simply add a new option to the list. If you specify a name you can override
112 the option as every other option by reassigning a new value to the option.</para>
113
334459ab
JAK
114 <para>Two specials are allowed, <literal>#include</literal> (which is deprecated
115 and not supported by alternative implementations) and <literal>#clear</literal>:
24f6490f
AL
116 <literal>#include</literal> will include the given file, unless the filename
117 ends in a slash, then the whole directory is included.
d82cdf73 118 <literal>#clear</literal> is used to erase a part of the configuration tree. The
63fc5550
DK
119 specified element and all its descendants are erased.
120 (Note that these lines also need to end with a semicolon.)</para>
121
122 <para>The #clear command is the only way to delete a list or a complete scope.
123 Reopening a scope or the ::-style described below will <emphasis>not</emphasis>
a9564741 124 override previously written entries. Only options can be overridden by addressing a new
63fc5550 125 value to it - lists and scopes can't be overridden, only cleared.</para>
24f6490f
AL
126
127 <para>All of the APT tools take a -o option which allows an arbitrary configuration
128 directive to be specified on the command line. The syntax is a full option
129 name (<literal>APT::Get::Assume-Yes</literal> for instance) followed by an equals
c086ac18
DK
130 sign then the new value of the option. To append a new element to a list, add a
131 trailing :: to the name of the list. (As you might suspect: The scope syntax can't
132 be used on the command line.)</para>
63fc5550
DK
133
134 <para>Note that you can use :: only for appending one item per line to a list and
135 that you should not use it in combination with the scope syntax.
136 (The scope syntax implicit insert ::) Using both syntaxes together will trigger a bug
c086ac18 137 which some users unfortunately depend on: An option with the unusual name "<literal>::</literal>"
63fc5550
DK
138 which acts like every other option with a name. These introduces many problems
139 including that a user who writes multiple lines in this <emphasis>wrong</emphasis> syntax in
140 the hope to append to a list will gain the opposite as only the last assignment for this option
141 "<literal>::</literal>" will be used. Upcoming APT versions will raise errors and
142 will stop working if they encounter this misuse, so please correct such statements now
143 as long as APT doesn't complain explicit about them.</para>
24f6490f
AL
144 </refsect1>
145
146 <refsect1><title>The APT Group</title>
147 <para>This group of options controls general APT behavior as well as holding the
148 options for all of the tools.</para>
149
150 <variablelist>
2b9b27c3 151 <varlistentry><term><option>Architecture</option></term>
24f6490f
AL
152 <listitem><para>System Architecture; sets the architecture to use when fetching files and
153 parsing package lists. The internal default is the architecture apt was
154 compiled for.</para></listitem>
155 </varlistentry>
58014adc 156
2b9b27c3 157 <varlistentry><term><option>Architectures</option></term>
c086ac18
DK
158 <listitem><para>All Architectures the system supports. Processors implementing the
159 <literal>amd64</literal> (also called <literal>x86-64</literal>) instruction set are
160 e.g. also able to execute binaries compiled for the <literal>i386</literal>
161 (<literal>x86</literal>) instruction set; This list is use when fetching files and
58014adc
DK
162 parsing package lists. The internal default is always the native architecture (<literal>APT::Architecture</literal>)
163 and all foreign architectures it can retrieve by calling <command>dpkg --print-foreign-architectures</command>.
164 </para></listitem>
165 </varlistentry>
166
2b9b27c3 167 <varlistentry><term><option>Default-Release</option></term>
e1dd65c9
DK
168 <listitem><para>Default release to install packages from if more than one
169 version available. Contains release name, codename or release version. Examples: 'stable', 'testing',
170 'unstable', '&stable-codename;', '&testing-codename;', '4.0', '5.0*'. See also &apt-preferences;.</para></listitem>
60a8f9c0 171 </varlistentry>
45df0ad2 172
2b9b27c3 173 <varlistentry><term><option>Ignore-Hold</option></term>
24f6490f
AL
174 <listitem><para>Ignore Held packages; This global option causes the problem resolver to
175 ignore held packages in its decision making.</para></listitem>
176 </varlistentry>
177
2b9b27c3 178 <varlistentry><term><option>Clean-Installed</option></term>
24f6490f
AL
179 <listitem><para>Defaults to on. When turned on the autoclean feature will remove any packages
180 which can no longer be downloaded from the cache. If turned off then
181 packages that are locally installed are also excluded from cleaning - but
182 note that APT provides no direct means to reinstall them.</para></listitem>
183 </varlistentry>
184
2b9b27c3 185 <varlistentry><term><option>Immediate-Configure</option></term>
f66a64c2
DK
186 <listitem><para>Defaults to on which will cause APT to install essential and important packages
187 as fast as possible in the install/upgrade operation. This is done to limit the effect of a failing
20382bad 188 &dpkg; call: If this option is disabled APT does treat an important package in the same way as
f66a64c2
DK
189 an extra package: Between the unpacking of the important package A and his configuration can then
190 be many other unpack or configuration calls, e.g. for package B which has no relation to A, but
191 causes the dpkg call to fail (e.g. because maintainer script of package B generates an error) which results
192 in a system state in which package A is unpacked but unconfigured - each package depending on A is now no
193 longer guaranteed to work as their dependency on A is not longer satisfied. The immediate configuration marker
194 is also applied to all dependencies which can generate a problem if the dependencies e.g. form a circle
195 as a dependency with the immediate flag is comparable with a Pre-Dependency. So in theory it is possible
d456bf5a
DK
196 that APT encounters a situation in which it is unable to perform immediate configuration, errors out and
197 refers to this option so the user can deactivate the immediate configuration temporarily to be able to perform
f66a64c2 198 an install/upgrade again. Note the use of the word "theory" here as this problem was only encountered by now
d456bf5a 199 in real world a few times in non-stable distribution versions and was caused by wrong dependencies of the package
20382bad
DK
200 in question or by a system in an already broken state, so you should not blindly disable this option as
201 the mentioned scenario above is not the only problem immediate configuration can help to prevent in the first place.
202 Before a big operation like <literal>dist-upgrade</literal> is run with this option disabled it should be tried to
203 explicitly <literal>install</literal> the package APT is unable to configure immediately, but please make sure to
204 report your problem also to your distribution and to the APT team with the buglink below so they can work on
205 improving or correcting the upgrade process.</para></listitem>
24f6490f
AL
206 </varlistentry>
207
2b9b27c3 208 <varlistentry><term><option>Force-LoopBreak</option></term>
24f6490f
AL
209 <listitem><para>Never Enable this option unless you -really- know what you are doing. It
210 permits APT to temporarily remove an essential package to break a
211 Conflicts/Conflicts or Conflicts/Pre-Depend loop between two essential
212 packages. SUCH A LOOP SHOULD NEVER EXIST AND IS A GRAVE BUG. This option
213 will work if the essential packages are not tar, gzip, libc, dpkg, bash or
214 anything that those packages depend on.</para></listitem>
215 </varlistentry>
216
2b9b27c3 217 <varlistentry><term><option>Cache-Start</option></term><term><option>Cache-Grow</option></term><term><option>Cache-Limit</option></term>
dcdf1ef1
DK
218 <listitem><para>APT uses since version 0.7.26 a resizable memory mapped cache file to store the 'available'
219 information. <literal>Cache-Start</literal> acts as a hint to which size the Cache will grow
220 and is therefore the amount of memory APT will request at startup. The default value is
c086ac18
DK
221 20971520 bytes (~20 MB). Note that this amount of space needs to be available for APT
222 otherwise it will likely fail ungracefully, so for memory restricted devices this value should
223 be lowered while on systems with a lot of configured sources it should be increased.
224 <literal>Cache-Grow</literal> defines in bytes with the default of 1048576 (~1 MB) how much
dcdf1ef1
DK
225 the Cache size will be increased in the event the space defined by <literal>Cache-Start</literal>
226 is not enough. These value will be applied again and again until either the cache is big
227 enough to store all information or the size of the cache reaches the <literal>Cache-Limit</literal>.
228 The default of <literal>Cache-Limit</literal> is 0 which stands for no limit.
229 If <literal>Cache-Grow</literal> is set to 0 the automatic grow of the cache is disabled.
230 </para></listitem>
24f6490f
AL
231 </varlistentry>
232
2b9b27c3 233 <varlistentry><term><option>Build-Essential</option></term>
24f6490f
AL
234 <listitem><para>Defines which package(s) are considered essential build dependencies.</para></listitem>
235 </varlistentry>
236
2b9b27c3 237 <varlistentry><term><option>Get</option></term>
24f6490f
AL
238 <listitem><para>The Get subsection controls the &apt-get; tool, please see its
239 documentation for more information about the options here.</para></listitem>
240 </varlistentry>
241
2b9b27c3 242 <varlistentry><term><option>Cache</option></term>
24f6490f
AL
243 <listitem><para>The Cache subsection controls the &apt-cache; tool, please see its
244 documentation for more information about the options here.</para></listitem>
245 </varlistentry>
246
2b9b27c3 247 <varlistentry><term><option>CDROM</option></term>
24f6490f
AL
248 <listitem><para>The CDROM subsection controls the &apt-cdrom; tool, please see its
249 documentation for more information about the options here.</para></listitem>
250 </varlistentry>
251 </variablelist>
252 </refsect1>
253
254 <refsect1><title>The Acquire Group</title>
255 <para>The <literal>Acquire</literal> group of options controls the download of packages
256 and the URI handlers.
257
258 <variablelist>
2b9b27c3 259 <varlistentry><term><option>Check-Valid-Until</option></term>
b02fffa6
DK
260 <listitem><para>Security related option defaulting to true as an
261 expiring validation for a Release file prevents longtime replay attacks
262 and can e.g. also help users to identify no longer updated mirrors -
263 but the feature depends on the correctness of the time on the user system.
264 Archive maintainers are encouraged to create Release files with the
265 <literal>Valid-Until</literal> header, but if they don't or a stricter value
266 is volitional the following <literal>Max-ValidTime</literal> option can be used.
267 </para></listitem>
268 </varlistentry>
269
2b9b27c3 270 <varlistentry><term><option>Max-ValidTime</option></term>
b02fffa6 271 <listitem><para>Seconds the Release file should be considered valid after
89500a25
DK
272 it was created (indicated by the <literal>Date</literal> header).
273 If the Release file itself includes a <literal>Valid-Until</literal> header
274 the earlier date of the two is used as the expiration date.
c086ac18 275 The default value is <literal>0</literal> which stands for "for ever valid".
89500a25
DK
276 Archive specific settings can be made by appending the label of the archive
277 to the option name.
278 </para></listitem>
279 </varlistentry>
280
2b9b27c3 281 <varlistentry><term><option>Min-ValidTime</option></term>
89500a25
DK
282 <listitem><para>Minimum of seconds the Release file should be considered
283 valid after it was created (indicated by the <literal>Date</literal> header).
284 Use this if you need to use a seldomly updated (local) mirror of a more
285 regular updated archive with a <literal>Valid-Until</literal> header
2130caa8 286 instead of completely disabling the expiration date checking.
89500a25
DK
287 Archive specific settings can and should be used by appending the label of
288 the archive to the option name.
b02fffa6
DK
289 </para></listitem>
290 </varlistentry>
291
2b9b27c3 292 <varlistentry><term><option>PDiffs</option></term>
d82cdf73 293 <listitem><para>Try to download deltas called <literal>PDiffs</literal> for
0d70b055 294 Packages or Sources files instead of downloading whole ones. True
02dceb31
DK
295 by default.</para>
296 <para>Two sub-options to limit the use of PDiffs are also available:
297 With <literal>FileLimit</literal> can be specified how many PDiff files
c086ac18 298 are downloaded at most to update a file. <literal>SizeLimit</literal>
f3b8d857 299 on the other hand is the maximum percentage of the size of all patches
02dceb31
DK
300 compared to the size of the targeted file. If one of these limits is
301 exceeded the complete file is downloaded instead of the patches.
302 </para></listitem>
0d70b055
EL
303 </varlistentry>
304
2b9b27c3 305 <varlistentry><term><option>Queue-Mode</option></term>
24f6490f
AL
306 <listitem><para>Queuing mode; <literal>Queue-Mode</literal> can be one of <literal>host</literal> or
307 <literal>access</literal> which determines how APT parallelizes outgoing
308 connections. <literal>host</literal> means that one connection per target host
309 will be opened, <literal>access</literal> means that one connection per URI type
310 will be opened.</para></listitem>
311 </varlistentry>
312
2b9b27c3 313 <varlistentry><term><option>Retries</option></term>
24f6490f
AL
314 <listitem><para>Number of retries to perform. If this is non-zero APT will retry failed
315 files the given number of times.</para></listitem>
316 </varlistentry>
317
2b9b27c3 318 <varlistentry><term><option>Source-Symlinks</option></term>
24f6490f
AL
319 <listitem><para>Use symlinks for source archives. If set to true then source archives will
320 be symlinked when possible instead of copying. True is the default.</para></listitem>
321 </varlistentry>
322
2b9b27c3 323 <varlistentry><term><option>http</option></term>
24f6490f
AL
324 <listitem><para>HTTP URIs; http::Proxy is the default http proxy to use. It is in the
325 standard form of <literal>http://[[user][:pass]@]host[:port]/</literal>. Per
326 host proxies can also be specified by using the form
327 <literal>http::Proxy::&lt;host&gt;</literal> with the special keyword <literal>DIRECT</literal>
788a8f42
EL
328 meaning to use no proxies. If no one of the above settings is specified,
329 <envar>http_proxy</envar> environment variable
330 will be used.</para>
24f6490f
AL
331
332 <para>Three settings are provided for cache control with HTTP/1.1 compliant
333 proxy caches. <literal>No-Cache</literal> tells the proxy to not use its cached
334 response under any circumstances, <literal>Max-Age</literal> is sent only for
335 index files and tells the cache to refresh its object if it is older than
336 the given number of seconds. Debian updates its index files daily so the
337 default is 1 day. <literal>No-Store</literal> specifies that the cache should never
338 store this request, it is only set for archive files. This may be useful
339 to prevent polluting a proxy cache with very large .deb files. Note:
340 Squid 2.0.2 does not support any of these options.</para>
341
342 <para>The option <literal>timeout</literal> sets the timeout timer used by the method,
343 this applies to all things including connection timeout and data timeout.</para>
344
82214317
DK
345 <para>The setting <literal>Acquire::http::Pipeline-Depth</literal> can be used to
346 enabled HTTP pipeling (RFC 2616 section 8.1.2.2) which can be beneficial e.g. on
347 high-latency connections. It specifies how many requests are send in a pipeline.
348 Previous APT versions had a default of 10 for this setting, but the default value
349 is now 0 (= disabled) to avoid problems with the ever-growing amount of webservers
350 and proxies which choose to not conform to the HTTP/1.1 specification.</para>
5900bd8d 351
c086ac18
DK
352 <para><literal>Acquire::http::AllowRedirect</literal> controls if APT will follow
353 redirects, which is enabled by default.</para>
354
5900bd8d
DK
355 <para>The used bandwidth can be limited with <literal>Acquire::http::Dl-Limit</literal>
356 which accepts integer values in kilobyte. The default value is 0 which deactivates
a9564741 357 the limit and tries uses as much as possible of the bandwidth (Note that this option implicit
4494239c
DK
358 deactivates the download from multiple servers at the same time.)</para>
359
360 <para><literal>Acquire::http::User-Agent</literal> can be used to set a different
361 User-Agent for the http download method as some proxies allow access for clients
362 only if the client uses a known identifier.</para>
363 </listitem>
24f6490f
AL
364 </varlistentry>
365
2b9b27c3 366 <varlistentry><term><option>https</option></term>
c0d43847
DK
367 <listitem><para>HTTPS URIs. Cache-control, Timeout, AllowRedirect, Dl-Limit and
368 proxy options are the same as for <literal>http</literal> method and will also
369 default to the options from the <literal>http</literal> method if they are not
370 explicitly set for https. <literal>Pipeline-Depth</literal> option is not
371 supported yet.</para>
370ad5e1
EL
372
373 <para><literal>CaInfo</literal> suboption specifies place of file that
374 holds info about trusted certificates.
375 <literal>&lt;host&gt;::CaInfo</literal> is corresponding per-host option.
376 <literal>Verify-Peer</literal> boolean suboption determines whether verify
377 server's host certificate against trusted certificates or not.
378 <literal>&lt;host&gt;::Verify-Peer</literal> is corresponding per-host option.
379 <literal>Verify-Host</literal> boolean suboption determines whether verify
380 server's hostname or not.
381 <literal>&lt;host&gt;::Verify-Host</literal> is corresponding per-host option.
382 <literal>SslCert</literal> determines what certificate to use for client
383 authentication. <literal>&lt;host&gt;::SslCert</literal> is corresponding per-host option.
384 <literal>SslKey</literal> determines what private key to use for client
385 authentication. <literal>&lt;host&gt;::SslKey</literal> is corresponding per-host option.
386 <literal>SslForceVersion</literal> overrides default SSL version to use.
387 Can contain 'TLSv1' or 'SSLv3' string.
388 <literal>&lt;host&gt;::SslForceVersion</literal> is corresponding per-host option.
389 </para></listitem></varlistentry>
390
2b9b27c3 391 <varlistentry><term><option>ftp</option></term>
788a8f42
EL
392 <listitem><para>FTP URIs; ftp::Proxy is the default ftp proxy to use. It is in the
393 standard form of <literal>ftp://[[user][:pass]@]host[:port]/</literal>. Per
394 host proxies can also be specified by using the form
395 <literal>ftp::Proxy::&lt;host&gt;</literal> with the special keyword <literal>DIRECT</literal>
396 meaning to use no proxies. If no one of the above settings is specified,
397 <envar>ftp_proxy</envar> environment variable
398 will be used. To use a ftp
24f6490f
AL
399 proxy you will have to set the <literal>ftp::ProxyLogin</literal> script in the
400 configuration file. This entry specifies the commands to send to tell
401 the proxy server what to connect to. Please see
402 &configureindex; for an example of
e3a1f08d 403 how to do this. The substitution variables available are
24f6490f
AL
404 <literal>$(PROXY_USER)</literal> <literal>$(PROXY_PASS)</literal> <literal>$(SITE_USER)</literal>
405 <literal>$(SITE_PASS)</literal> <literal>$(SITE)</literal> and <literal>$(SITE_PORT)</literal>
406 Each is taken from it's respective URI component.</para>
407
408 <para>The option <literal>timeout</literal> sets the timeout timer used by the method,
409 this applies to all things including connection timeout and data timeout.</para>
410
411 <para>Several settings are provided to control passive mode. Generally it is
412 safe to leave passive mode on, it works in nearly every environment.
413 However some situations require that passive mode be disabled and port
414 mode ftp used instead. This can be done globally, for connections that
415 go through a proxy or for a specific host (See the sample config file
416 for examples).</para>
417
418 <para>It is possible to proxy FTP over HTTP by setting the <envar>ftp_proxy</envar>
419 environment variable to a http url - see the discussion of the http method
420 above for syntax. You cannot set this in the configuration file and it is
421 not recommended to use FTP over HTTP due to its low efficiency.</para>
422
423 <para>The setting <literal>ForceExtended</literal> controls the use of RFC2428
e3a1f08d 424 <literal>EPSV</literal> and <literal>EPRT</literal> commands. The default is false, which means
24f6490f
AL
425 these commands are only used if the control connection is IPv6. Setting this
426 to true forces their use even on IPv4 connections. Note that most FTP servers
427 do not support RFC2428.</para></listitem>
428 </varlistentry>
429
2b9b27c3 430 <varlistentry><term><option>cdrom</option></term>
24f6490f
AL
431 <listitem><para>CDROM URIs; the only setting for CDROM URIs is the mount point,
432 <literal>cdrom::Mount</literal> which must be the mount point for the CDROM drive
433 as specified in <filename>/etc/fstab</filename>. It is possible to provide
434 alternate mount and unmount commands if your mount point cannot be listed
435 in the fstab (such as an SMB mount and old mount packages). The syntax
31f113db 436 is to put <literallayout>/cdrom/::Mount "foo";</literallayout> within
24f6490f
AL
437 the cdrom block. It is important to have the trailing slash. Unmount
438 commands can be specified using UMount.</para></listitem>
439 </varlistentry>
8a3642bd 440
2b9b27c3 441 <varlistentry><term><option>gpgv</option></term>
8a3642bd
MV
442 <listitem><para>GPGV URIs; the only option for GPGV URIs is the option to pass additional parameters to gpgv.
443 <literal>gpgv::Options</literal> Additional options passed to gpgv.
444 </para></listitem>
445 </varlistentry>
446
2b9b27c3 447 <varlistentry><term><option>CompressionTypes</option></term>
e85b4cd5
DK
448 <listitem><para>List of compression types which are understood by the acquire methods.
449 Files like <filename>Packages</filename> can be available in various compression formats.
8bd02d8b
DK
450 Per default the acquire methods can decompress <command>bzip2</command>, <command>lzma</command>
451 and <command>gzip</command> compressed files, with this setting more formats can be added
452 on the fly or the used method can be changed. The syntax for this is:
e85b4cd5 453 <synopsis>Acquire::CompressionTypes::<replaceable>FileExtension</replaceable> "<replaceable>Methodname</replaceable>";</synopsis>
8bd02d8b
DK
454 </para><para>Also the <literal>Order</literal> subgroup can be used to define in which order
455 the acquire system will try to download the compressed files. The acquire system will try the first
456 and proceed with the next compression type in this list on error, so to prefer one over the other type
457 simple add the preferred type at first - not already added default types will be added at run time
458 to the end of the list, so e.g. <synopsis>Acquire::CompressionTypes::Order:: "gz";</synopsis> can
459 be used to prefer <command>gzip</command> compressed files over <command>bzip2</command> and <command>lzma</command>.
460 If <command>lzma</command> should be preferred over <command>gzip</command> and <command>bzip2</command> the
461 configure setting should look like this <synopsis>Acquire::CompressionTypes::Order { "lzma"; "gz"; };</synopsis>
462 It is not needed to add <literal>bz2</literal> explicit to the list as it will be added automatic.</para>
463 <para>Note that at run time the <literal>Dir::Bin::<replaceable>Methodname</replaceable></literal> will
e85b4cd5 464 be checked: If this setting exists the method will only be used if this file exists, e.g. for
1fc8c922 465 the bzip2 method (the inbuilt) setting is: <literallayout>Dir::Bin::bzip2 "/bin/bzip2";</literallayout>
a9564741 466 Note also that list entries specified on the command line will be added at the end of the list
8bd02d8b 467 specified in the configuration files, but before the default entries. To prefer a type in this case
5d885723 468 over the ones specified in the configuration files you can set the option direct - not in list style.
8bd02d8b 469 This will not override the defined list, it will only prefix the list with this type.</para>
5d885723 470 <para>The special type <literal>uncompressed</literal> can be used to give uncompressed files a
1fc8c922 471 preference, but note that most archives don't provide uncompressed files so this is mostly only
5d885723 472 useable for local mirrors.</para></listitem>
e85b4cd5 473 </varlistentry>
45df0ad2 474
2b9b27c3 475 <varlistentry><term><option>GzipIndexes</option></term>
c8c6e61b 476 <listitem><para>
477 When downloading <literal>gzip</literal> compressed indexes (Packages, Sources, or
478 Translations), keep them gzip compressed locally instead of unpacking
479 them. This saves quite a lot of disk space at the expense of more CPU
480 requirements when building the local package caches. False by default.
481 </para></listitem>
482 </varlistentry>
483
2b9b27c3 484 <varlistentry><term><option>Languages</option></term>
45df0ad2
DK
485 <listitem><para>The Languages subsection controls which <filename>Translation</filename> files are downloaded
486 and in which order APT tries to display the Description-Translations. APT will try to display the first
d456bf5a 487 available Description in the Language which is listed at first. Languages can be defined with their
45df0ad2
DK
488 short or long Languagecodes. Note that not all archives provide <filename>Translation</filename>
489 files for every Language - especially the long Languagecodes are rare, so please
490 inform you which ones are available before you set here impossible values.</para>
491 <para>The default list includes "environment" and "en". "<literal>environment</literal>" has a special meaning here:
c6e29d05 492 It will be replaced at runtime with the languagecodes extracted from the <literal>LC_MESSAGES</literal> environment variable.
45df0ad2
DK
493 It will also ensure that these codes are not included twice in the list. If <literal>LC_MESSAGES</literal>
494 is set to "C" only the <filename>Translation-en</filename> file (if available) will be used.
495 To force apt to use no Translation file use the setting <literal>Acquire::Languages=none</literal>. "<literal>none</literal>"
496 is another special meaning code which will stop the search for a fitting <filename>Translation</filename> file.
497 This can be used by the system administrator to let APT know that it should download also this files without
d456bf5a 498 actually use them if the environment doesn't specify this languages. So the following example configuration will
45df0ad2
DK
499 result in the order "en, de" in an english and in "de, en" in a german localization. Note that "fr" is downloaded,
500 but not used if APT is not used in a french localization, in such an environment the order would be "fr, de, en".
c086ac18
DK
501 <programlisting>Acquire::Languages { "environment"; "de"; "en"; "none"; "fr"; };</programlisting></para>
502 <para>Note: To prevent problems resulting from APT being executed in different environments
503 (e.g. by different users or by other programs) all Translation files which are found in
504 <filename>/var/lib/apt/lists/</filename> will be added to the end of the list
505 (after an implicit "<literal>none</literal>").</para>
506 </listitem>
45df0ad2
DK
507 </varlistentry>
508
24f6490f
AL
509 </variablelist>
510 </para>
511 </refsect1>
512
513 <refsect1><title>Directories</title>
514
515 <para>The <literal>Dir::State</literal> section has directories that pertain to local
516 state information. <literal>lists</literal> is the directory to place downloaded
517 package lists in and <literal>status</literal> is the name of the dpkg status file.
c086ac18 518 <literal>preferences</literal> is the name of the APT <filename>preferences</filename> file.
24f6490f
AL
519 <literal>Dir::State</literal> contains the default directory to prefix on all sub
520 items if they do not start with <filename>/</filename> or <filename>./</filename>.</para>
521
522 <para><literal>Dir::Cache</literal> contains locations pertaining to local cache
523 information, such as the two package caches <literal>srcpkgcache</literal> and
524 <literal>pkgcache</literal> as well as the location to place downloaded archives,
525 <literal>Dir::Cache::archives</literal>. Generation of caches can be turned off
526 by setting their names to be blank. This will slow down startup but
e3a1f08d 527 save disk space. It is probably preferred to turn off the pkgcache rather
24f6490f
AL
528 than the srcpkgcache. Like <literal>Dir::State</literal> the default
529 directory is contained in <literal>Dir::Cache</literal></para>
530
531 <para><literal>Dir::Etc</literal> contains the location of configuration files,
532 <literal>sourcelist</literal> gives the location of the sourcelist and
533 <literal>main</literal> is the default configuration file (setting has no effect,
534 unless it is done from the config file specified by
13e8426f 535 <envar>APT_CONFIG</envar>).</para>
24f6490f
AL
536
537 <para>The <literal>Dir::Parts</literal> setting reads in all the config fragments in
538 lexical order from the directory specified. After this is done then the
539 main config file is loaded.</para>
540
541 <para>Binary programs are pointed to by <literal>Dir::Bin</literal>. <literal>Dir::Bin::Methods</literal>
542 specifies the location of the method handlers and <literal>gzip</literal>,
e85b4cd5 543 <literal>bzip2</literal>, <literal>lzma</literal>,
24f6490f
AL
544 <literal>dpkg</literal>, <literal>apt-get</literal> <literal>dpkg-source</literal>
545 <literal>dpkg-buildpackage</literal> and <literal>apt-cache</literal> specify the location
546 of the respective programs.</para>
db2cca11
OS
547
548 <para>
549 The configuration item <literal>RootDir</literal> has a special
550 meaning. If set, all paths in <literal>Dir::</literal> will be
551 relative to <literal>RootDir</literal>, <emphasis>even paths that
552 are specified absolutely</emphasis>. So, for instance, if
553 <literal>RootDir</literal> is set to
554 <filename>/tmp/staging</filename> and
555 <literal>Dir::State::status</literal> is set to
556 <filename>/var/lib/dpkg/status</filename>, then the status file
557 will be looked up in
558 <filename>/tmp/staging/var/lib/dpkg/status</filename>.
559 </para>
1408e219
DK
560
561 <para>
562 The <literal>Ignore-Files-Silently</literal> list can be used to specify
563 which files APT should silently ignore while parsing the files in the
564 fragment directories. Per default a file which end with <literal>.disabled</literal>,
565 <literal>~</literal>, <literal>.bak</literal> or <literal>.dpkg-[a-z]+</literal>
566 is silently ignored. As seen in the last default value these patterns can use regular
567 expression syntax.
568 </para>
24f6490f
AL
569 </refsect1>
570
571 <refsect1><title>APT in DSelect</title>
572 <para>
573 When APT is used as a &dselect; method several configuration directives
574 control the default behaviour. These are in the <literal>DSelect</literal> section.</para>
575
576 <variablelist>
2b9b27c3 577 <varlistentry><term><option>Clean</option></term>
24f6490f
AL
578 <listitem><para>Cache Clean mode; this value may be one of always, prompt, auto,
579 pre-auto and never. always and prompt will remove all packages from
580 the cache after upgrading, prompt (the default) does so conditionally.
581 auto removes only those packages which are no longer downloadable
582 (replaced with a new version for instance). pre-auto performs this
583 action before downloading new packages.</para></listitem>
584 </varlistentry>
585
2b9b27c3 586 <varlistentry><term><option>options</option></term>
24f6490f
AL
587 <listitem><para>The contents of this variable is passed to &apt-get; as command line
588 options when it is run for the install phase.</para></listitem>
589 </varlistentry>
590
2b9b27c3 591 <varlistentry><term><option>Updateoptions</option></term>
24f6490f
AL
592 <listitem><para>The contents of this variable is passed to &apt-get; as command line
593 options when it is run for the update phase.</para></listitem>
594 </varlistentry>
595
2b9b27c3 596 <varlistentry><term><option>PromptAfterUpdate</option></term>
24f6490f
AL
597 <listitem><para>If true the [U]pdate operation in &dselect; will always prompt to continue.
598 The default is to prompt only on error.</para></listitem>
599 </varlistentry>
600 </variablelist>
601 </refsect1>
602
603 <refsect1><title>How APT calls dpkg</title>
604 <para>Several configuration directives control how APT invokes &dpkg;. These are
605 in the <literal>DPkg</literal> section.</para>
606
607 <variablelist>
2b9b27c3 608 <varlistentry><term><option>options</option></term>
24f6490f
AL
609 <listitem><para>This is a list of options to pass to dpkg. The options must be specified
610 using the list notation and each list item is passed as a single argument
611 to &dpkg;.</para></listitem>
612 </varlistentry>
613
2b9b27c3 614 <varlistentry><term><option>Pre-Invoke</option></term><term><option>Post-Invoke</option></term>
24f6490f
AL
615 <listitem><para>This is a list of shell commands to run before/after invoking &dpkg;.
616 Like <literal>options</literal> this must be specified in list notation. The
617 commands are invoked in order using <filename>/bin/sh</filename>, should any
618 fail APT will abort.</para></listitem>
619 </varlistentry>
620
2b9b27c3 621 <varlistentry><term><option>Pre-Install-Pkgs</option></term>
24f6490f
AL
622 <listitem><para>This is a list of shell commands to run before invoking dpkg. Like
623 <literal>options</literal> this must be specified in list notation. The commands
624 are invoked in order using <filename>/bin/sh</filename>, should any fail APT
625 will abort. APT will pass to the commands on standard input the
626 filenames of all .deb files it is going to install, one per line.</para>
627
628 <para>Version 2 of this protocol dumps more information, including the
629 protocol version, the APT configuration space and the packages, files
630 and versions being changed. Version 2 is enabled by setting
631 <literal>DPkg::Tools::options::cmd::Version</literal> to 2. <literal>cmd</literal> is a
632 command given to <literal>Pre-Install-Pkgs</literal>.</para></listitem>
633 </varlistentry>
634
2b9b27c3 635 <varlistentry><term><option>Run-Directory</option></term>
24f6490f
AL
636 <listitem><para>APT chdirs to this directory before invoking dpkg, the default is
637 <filename>/</filename>.</para></listitem>
638 </varlistentry>
639
2b9b27c3 640 <varlistentry><term><option>Build-options</option></term>
24f6490f
AL
641 <listitem><para>These options are passed to &dpkg-buildpackage; when compiling packages,
642 the default is to disable signing and produce all binaries.</para></listitem>
643 </varlistentry>
644 </variablelist>
3e9c4f70 645
5e312de7 646 <refsect2><title>dpkg trigger usage (and related options)</title>
3e9c4f70 647 <para>APT can call dpkg in a way so it can make aggressive use of triggers over
1fc0d435 648 multiple calls of dpkg. Without further options dpkg will use triggers only in between his
5e312de7 649 own run. Activating these options can therefore decrease the time needed to perform the
3e9c4f70 650 install / upgrade. Note that it is intended to activate these options per default in the
a9564741 651 future, but as it changes the way APT calling dpkg drastically it needs a lot more testing.
3e9c4f70
DK
652 <emphasis>These options are therefore currently experimental and should not be used in
653 productive environments.</emphasis> Also it breaks the progress reporting so all frontends will
654 currently stay around half (or more) of the time in the 100% state while it actually configures
655 all packages.</para>
a9564741 656 <para>Note that it is not guaranteed that APT will support these options or that these options will
5e312de7
DK
657 not cause (big) trouble in the future. If you have understand the current risks and problems with
658 these options, but are brave enough to help testing them create a new configuration file and test a
659 combination of options. Please report any bugs, problems and improvements you encounter and make sure
660 to note which options you have used in your reports. Asking dpkg for help could also be useful for
661 debugging proposes, see e.g. <command>dpkg --audit</command>. A defensive option combination would be
3e9c4f70 662<literallayout>DPkg::NoTriggers "true";
5e312de7
DK
663PackageManager::Configure "smart";
664DPkg::ConfigurePending "true";
d5081aee 665DPkg::TriggersPending "true";</literallayout></para>
3e9c4f70
DK
666
667 <variablelist>
2b9b27c3 668 <varlistentry><term><option>DPkg::NoTriggers</option></term>
5f4331c4 669 <listitem><para>Add the no triggers flag to all dpkg calls (except the ConfigurePending call).
3e9c4f70 670 See &dpkg; if you are interested in what this actually means. In short: dpkg will not run the
5f4331c4 671 triggers when this flag is present unless it is explicitly called to do so in an extra call.
3e9c4f70
DK
672 Note that this option exists (undocumented) also in older apt versions with a slightly different
673 meaning: Previously these option only append --no-triggers to the configure calls to dpkg -
674 now apt will add these flag also to the unpack and remove calls.</para></listitem>
675 </varlistentry>
2b9b27c3 676 <varlistentry><term><option>PackageManager::Configure</option></term>
5e312de7
DK
677 <listitem><para>Valid values are "<literal>all</literal>", "<literal>smart</literal>" and "<literal>no</literal>".
678 "<literal>all</literal>" is the default value and causes APT to configure all packages explicit.
679 The "<literal>smart</literal>" way is it to configure only packages which need to be configured before
680 another package can be unpacked (Pre-Depends) and let the rest configure by dpkg with a call generated
681 by the next option. "<literal>no</literal>" on the other hand will not configure anything and totally
5f4331c4
DK
682 rely on dpkg for configuration (which will at the moment fail if a Pre-Depends is encountered).
683 Setting this option to another than the all value will implicitly activate also the next option per
3e9c4f70
DK
684 default as otherwise the system could end in an unconfigured status which could be unbootable!
685 </para></listitem>
686 </varlistentry>
2b9b27c3 687 <varlistentry><term><option>DPkg::ConfigurePending</option></term>
3e9c4f70
DK
688 <listitem><para>If this option is set apt will call <command>dpkg --configure --pending</command>
689 to let dpkg handle all required configurations and triggers. This option is activated automatic
5e312de7 690 per default if the previous option is not set to <literal>all</literal>, but deactivating could be useful
5f4331c4 691 if you want to run APT multiple times in a row - e.g. in an installer. In these sceneries you could
3e9c4f70
DK
692 deactivate this option in all but the last run.</para></listitem>
693 </varlistentry>
2b9b27c3 694 <varlistentry><term><option>DPkg::TriggersPending</option></term>
5e312de7
DK
695 <listitem><para>Useful for <literal>smart</literal> configuration as a package which has pending
696 triggers is not considered as <literal>installed</literal> and dpkg treats them as <literal>unpacked</literal>
697 currently which is a dealbreaker for Pre-Dependencies (see debbugs #526774). Note that this will
698 process all triggers, not only the triggers needed to configure this package.</para></listitem>
699 </varlistentry>
2b9b27c3 700 <varlistentry><term><option>PackageManager::UnpackAll</option></term>
5e312de7
DK
701 <listitem><para>As the configuration can be deferred to be done at the end by dpkg it can be
702 tried to order the unpack series only by critical needs, e.g. by Pre-Depends. Default is true
a9564741 703 and therefore the "old" method of ordering in various steps by everything. While both method
5e312de7
DK
704 were present in earlier APT versions the <literal>OrderCritical</literal> method was unused, so
705 this method is very experimental and needs further improvements before becoming really useful.
706 </para></listitem>
707 </varlistentry>
2b9b27c3 708 <varlistentry><term><option>OrderList::Score::Immediate</option></term>
5e312de7
DK
709 <listitem><para>Essential packages (and there dependencies) should be configured immediately
710 after unpacking. It will be a good idea to do this quite early in the upgrade process as these
711 these configure calls require currently also <literal>DPkg::TriggersPending</literal> which
712 will run quite a few triggers (which maybe not needed). Essentials get per default a high score
a9564741 713 but the immediate flag is relatively low (a package which has a Pre-Depends is higher rated).
5e312de7
DK
714 These option and the others in the same group can be used to change the scoring. The following
715 example shows the settings with there default values.
716 <literallayout>OrderList::Score {
717 Delete 500;
718 Essential 200;
719 Immediate 10;
720 PreDepends 50;
721};</literallayout>
722 </para></listitem>
723 </varlistentry>
3e9c4f70
DK
724 </variablelist>
725 </refsect2>
24f6490f
AL
726 </refsect1>
727
0224daf2
EL
728 <refsect1>
729 <title>Periodic and Archives options</title>
730 <para><literal>APT::Periodic</literal> and <literal>APT::Archives</literal>
731 groups of options configure behavior of apt periodic updates, which is
732 done by <literal>/etc/cron.daily/apt</literal> script. See header of
733 this script for the brief documentation of these options.
734 </para>
735 </refsect1>
736
be1b8568
EL
737 <refsect1>
738 <title>Debug options</title>
739 <para>
740 Enabling options in the <literal>Debug::</literal> section will
741 cause debugging information to be sent to the standard error
742 stream of the program utilizing the <literal>apt</literal>
743 libraries, or enable special program modes that are primarily
744 useful for debugging the behavior of <literal>apt</literal>.
745 Most of these options are not interesting to a normal user, but a
746 few may be:
747
748 <itemizedlist>
749 <listitem>
750 <para>
751 <literal>Debug::pkgProblemResolver</literal> enables output
752 about the decisions made by
753 <literal>dist-upgrade, upgrade, install, remove, purge</literal>.
754 </para>
755 </listitem>
756
757 <listitem>
758 <para>
759 <literal>Debug::NoLocking</literal> disables all file
760 locking. This can be used to run some operations (for
761 instance, <literal>apt-get -s install</literal>) as a
762 non-root user.
763 </para>
764 </listitem>
765
766 <listitem>
767 <para>
768 <literal>Debug::pkgDPkgPM</literal> prints out the actual
769 command line each time that <literal>apt</literal> invokes
770 &dpkg;.
771 </para>
772 </listitem>
773
774 <listitem>
775 <para>
776 <literal>Debug::IdentCdrom</literal> disables the inclusion
777 of statfs data in CDROM IDs. <!-- TODO: provide a
778 motivating example, except I haven't a clue why you'd want
779 to do this. -->
780 </para>
781 </listitem>
782 </itemizedlist>
8a3642bd 783 </para>
be1b8568
EL
784
785 <para>
786 A full list of debugging options to apt follows.
787 </para>
788
789 <variablelist>
790 <varlistentry>
2b9b27c3 791 <term><option>Debug::Acquire::cdrom</option></term>
be1b8568
EL
792
793 <listitem>
794 <para>
795 Print information related to accessing
796 <literal>cdrom://</literal> sources.
797 </para>
798 </listitem>
799 </varlistentry>
800
801 <varlistentry>
2b9b27c3 802 <term><option>Debug::Acquire::ftp</option></term>
be1b8568
EL
803
804 <listitem>
805 <para>
806 Print information related to downloading packages using
807 FTP.
808 </para>
809 </listitem>
810 </varlistentry>
811
812 <varlistentry>
2b9b27c3 813 <term><option>Debug::Acquire::http</option></term>
be1b8568
EL
814
815 <listitem>
816 <para>
817 Print information related to downloading packages using
818 HTTP.
819 </para>
820 </listitem>
821 </varlistentry>
822
823 <varlistentry>
2b9b27c3 824 <term><option>Debug::Acquire::https</option></term>
be1b8568
EL
825
826 <listitem>
827 <para>
828 Print information related to downloading packages using
829 HTTPS.
830 </para>
831 </listitem>
832 </varlistentry>
833
834 <varlistentry>
2b9b27c3 835 <term><option>Debug::Acquire::gpgv</option></term>
be1b8568
EL
836
837 <listitem>
838 <para>
839 Print information related to verifying cryptographic
840 signatures using <literal>gpg</literal>.
841 </para>
842 </listitem>
843 </varlistentry>
844
845 <varlistentry>
2b9b27c3 846 <term><option>Debug::aptcdrom</option></term>
be1b8568
EL
847
848 <listitem>
849 <para>
850 Output information about the process of accessing
851 collections of packages stored on CD-ROMs.
852 </para>
853 </listitem>
854 </varlistentry>
855
856 <varlistentry>
2b9b27c3 857 <term><option>Debug::BuildDeps</option></term>
be1b8568
EL
858 <listitem>
859 <para>
860 Describes the process of resolving build-dependencies in
861 &apt-get;.
862 </para>
863 </listitem>
864 </varlistentry>
865
866 <varlistentry>
2b9b27c3 867 <term><option>Debug::Hashes</option></term>
be1b8568
EL
868 <listitem>
869 <para>
870 Output each cryptographic hash that is generated by the
871 <literal>apt</literal> libraries.
872 </para>
873 </listitem>
874 </varlistentry>
875
876 <varlistentry>
2b9b27c3 877 <term><option>Debug::IdentCDROM</option></term>
be1b8568
EL
878 <listitem>
879 <para>
880 Do not include information from <literal>statfs</literal>,
881 namely the number of used and free blocks on the CD-ROM
882 filesystem, when generating an ID for a CD-ROM.
883 </para>
884 </listitem>
885 </varlistentry>
886
887 <varlistentry>
2b9b27c3 888 <term><option>Debug::NoLocking</option></term>
be1b8568
EL
889 <listitem>
890 <para>
891 Disable all file locking. For instance, this will allow
892 two instances of <quote><literal>apt-get
893 update</literal></quote> to run at the same time.
894 </para>
895 </listitem>
896 </varlistentry>
897
898 <varlistentry>
2b9b27c3 899 <term><option>Debug::pkgAcquire</option></term>
be1b8568
EL
900
901 <listitem>
902 <para>
903 Log when items are added to or removed from the global
904 download queue.
905 </para>
906 </listitem>
907 </varlistentry>
908
909 <varlistentry>
2b9b27c3 910 <term><option>Debug::pkgAcquire::Auth</option></term>
be1b8568
EL
911 <listitem>
912 <para>
913 Output status messages and errors related to verifying
914 checksums and cryptographic signatures of downloaded files.
915 </para>
916 </listitem>
917 </varlistentry>
918
919 <varlistentry>
2b9b27c3 920 <term><option>Debug::pkgAcquire::Diffs</option></term>
be1b8568
EL
921 <listitem>
922 <para>
923 Output information about downloading and applying package
924 index list diffs, and errors relating to package index list
925 diffs.
926 </para>
927 </listitem>
928 </varlistentry>
929
930 <varlistentry>
2b9b27c3 931 <term><option>Debug::pkgAcquire::RRed</option></term>
be1b8568
EL
932
933 <listitem>
934 <para>
935 Output information related to patching apt package lists
936 when downloading index diffs instead of full indices.
937 </para>
938 </listitem>
939 </varlistentry>
940
941 <varlistentry>
2b9b27c3 942 <term><option>Debug::pkgAcquire::Worker</option></term>
be1b8568
EL
943
944 <listitem>
945 <para>
946 Log all interactions with the sub-processes that actually
947 perform downloads.
948 </para>
949 </listitem>
950 </varlistentry>
951
952 <varlistentry>
2b9b27c3 953 <term><option>Debug::pkgAutoRemove</option></term>
be1b8568
EL
954
955 <listitem>
956 <para>
957 Log events related to the automatically-installed status of
958 packages and to the removal of unused packages.
959 </para>
960 </listitem>
961 </varlistentry>
962
963 <varlistentry>
2b9b27c3 964 <term><option>Debug::pkgDepCache::AutoInstall</option></term>
be1b8568
EL
965 <listitem>
966 <para>
967 Generate debug messages describing which packages are being
968 automatically installed to resolve dependencies. This
969 corresponds to the initial auto-install pass performed in,
970 e.g., <literal>apt-get install</literal>, and not to the
971 full <literal>apt</literal> dependency resolver; see
972 <literal>Debug::pkgProblemResolver</literal> for that.
973 </para>
974 </listitem>
975 </varlistentry>
976
af29ffb4 977 <varlistentry>
2b9b27c3 978 <term><option>Debug::pkgDepCache::Marker</option></term>
af29ffb4
MV
979 <listitem>
980 <para>
981 Generate debug messages describing which package is marked
982 as keep/install/remove while the ProblemResolver does his work.
983 Each addition or deletion may trigger additional actions;
984 they are shown indented two additional space under the original entry.
985 The format for each line is <literal>MarkKeep</literal>,
986 <literal>MarkDelete</literal> or <literal>MarkInstall</literal> followed by
987 <literal>package-name &lt;a.b.c -&gt; d.e.f | x.y.z&gt; (section)</literal>
988 where <literal>a.b.c</literal> is the current version of the package,
989 <literal>d.e.f</literal> is the version considered for installation and
990 <literal>x.y.z</literal> is a newer version, but not considered for installation
991 (because of a low pin score). The later two can be omitted if there is none or if
992 it is the same version as the installed.
993 <literal>section</literal> is the name of the section the package appears in.
994 </para>
995 </listitem>
996 </varlistentry>
997
be1b8568
EL
998 <!-- Question: why doesn't this do anything? The code says it should. -->
999 <varlistentry>
2b9b27c3 1000 <term><option>Debug::pkgInitConfig</option></term>
be1b8568
EL
1001 <listitem>
1002 <para>
d82cdf73 1003 Dump the default configuration to standard error on
be1b8568
EL
1004 startup.
1005 </para>
1006 </listitem>
1007 </varlistentry>
1008
1009 <varlistentry>
2b9b27c3 1010 <term><option>Debug::pkgDPkgPM</option></term>
be1b8568
EL
1011 <listitem>
1012 <para>
1013 When invoking &dpkg;, output the precise command line with
1014 which it is being invoked, with arguments separated by a
1015 single space character.
1016 </para>
1017 </listitem>
1018 </varlistentry>
1019
1020 <varlistentry>
2b9b27c3 1021 <term><option>Debug::pkgDPkgProgressReporting</option></term>
be1b8568
EL
1022 <listitem>
1023 <para>
1024 Output all the data received from &dpkg; on the status file
1025 descriptor and any errors encountered while parsing it.
1026 </para>
1027 </listitem>
1028 </varlistentry>
1029
1030 <varlistentry>
2b9b27c3 1031 <term><option>Debug::pkgOrderList</option></term>
be1b8568
EL
1032
1033 <listitem>
1034 <para>
1035 Generate a trace of the algorithm that decides the order in
1036 which <literal>apt</literal> should pass packages to
1037 &dpkg;.
1038 </para>
1039 </listitem>
1040 </varlistentry>
1041
1042 <varlistentry>
2b9b27c3 1043 <term><option>Debug::pkgPackageManager</option></term>
be1b8568
EL
1044
1045 <listitem>
1046 <para>
1047 Output status messages tracing the steps performed when
1048 invoking &dpkg;.
1049 </para>
1050 </listitem>
1051 </varlistentry>
1052
1053 <varlistentry>
2b9b27c3 1054 <term><option>Debug::pkgPolicy</option></term>
be1b8568
EL
1055
1056 <listitem>
1057 <para>
1058 Output the priority of each package list on startup.
1059 </para>
1060 </listitem>
1061 </varlistentry>
1062
1063 <varlistentry>
2b9b27c3 1064 <term><option>Debug::pkgProblemResolver</option></term>
be1b8568
EL
1065
1066 <listitem>
1067 <para>
1068 Trace the execution of the dependency resolver (this
1069 applies only to what happens when a complex dependency
1070 problem is encountered).
1071 </para>
1072 </listitem>
1073 </varlistentry>
1074
8b4894fe 1075 <varlistentry>
2b9b27c3 1076 <term><option>Debug::pkgProblemResolver::ShowScores</option></term>
8b4894fe
MV
1077 <listitem>
1078 <para>
1079 Display a list of all installed packages with their calculated score
1080 used by the pkgProblemResolver. The description of the package
1081 is the same as described in <literal>Debug::pkgDepCache::Marker</literal>
1082 </para>
1083 </listitem>
1084 </varlistentry>
1085
be1b8568 1086 <varlistentry>
2b9b27c3 1087 <term><option>Debug::sourceList</option></term>
be1b8568
EL
1088
1089 <listitem>
1090 <para>
1091 Print information about the vendors read from
1092 <filename>/etc/apt/vendors.list</filename>.
1093 </para>
1094 </listitem>
1095 </varlistentry>
1096
d82cdf73
MV
1097<!-- 2009/07/11 Currently used nowhere. The corresponding code
1098is commented.
be1b8568
EL
1099 <varlistentry>
1100 <term><literal>Debug::Vendor</literal></term>
1101
1102 <listitem>
1103 <para>
1104 Print information about each vendor.
1105 </para>
1106 </listitem>
1107 </varlistentry>
d82cdf73 1108-->
45df0ad2 1109
be1b8568 1110 </variablelist>
24f6490f
AL
1111 </refsect1>
1112
1113 <refsect1><title>Examples</title>
640c5d94
MZ
1114 <para>&configureindex; is a
1115 configuration file showing example values for all possible
24f6490f
AL
1116 options.</para>
1117 </refsect1>
1118
1119 <refsect1><title>Files</title>
6e2525a1 1120 <variablelist>
1221c3a3 1121 &file-aptconf;
6e2525a1 1122 </variablelist>
24f6490f
AL
1123 </refsect1>
1124
1125 <refsect1><title>See Also</title>
1126 <para>&apt-cache;, &apt-config;<!-- ? reading apt.conf -->, &apt-preferences;.</para>
1127 </refsect1>
1128
1129 &manbugs;
24f6490f
AL
1130
1131</refentry>
1132