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