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