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