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