]> git.saurik.com Git - apt.git/blob - doc/examples/configure-index
fix incorrect Korean translation of "manually" and "automatically"
[apt.git] / doc / examples / configure-index
1 /* This file is an index of all APT configuration directives. It should
2 NOT actually be used as a real config file, though it is (except for the
3 last line) a completely valid file. Most of the options have sane default
4 values, unless you have specific needs you should NOT include arbitrary
5 items in a custom configuration.
6
7 In some instances involving filenames it is possible to set the default
8 directory when the path is evaluated. This means you can use relative
9 paths within the sub scope.
10
11 The configuration directives are specified in a tree with {} designating
12 a subscope relative to the tag before the {}. You can further specify
13 a subscope using scope notation eg,
14 APT::Architecture "i386";
15 This is prefixed with the current scope. Scope notation must be used
16 if an option is specified on the command line with -o.
17 */
18
19 quiet "0";
20 quiet::NoUpdate "true"; // never update progress information - included in -q=1
21
22 // Options for APT in general
23 APT
24 {
25 Architecture "i386";
26 Architectures { "amd64"; "armel"; };
27 Build-Essential "build-essential";
28
29 NeverAutoRemove { "linux-image.*"; }; // packages that should never
30 // considered for autoRemove
31
32 // Options for apt-get
33 Get
34 {
35 Host-Architecture "armel";
36 Arch-Only "false";
37 AllowUnauthenticated "false"; // packages from unauthenticated
38 AutomaticRemove "false";
39 HideAutoRemove "false";
40 Download-Only "false";
41 Simulate "false";
42 Assume-Yes "false";
43 Force-Yes "false"; // I would never set this.
44 Fix-Broken "false";
45 Fix-Missing "false";
46 Show-Upgraded "false";
47 Show-Versions "false";
48 Upgrade "true";
49 Print-URIs "false";
50 Compile "false";
51 Download "true";
52 Purge "false";
53 List-Cleanup "true";
54 ReInstall "false";
55 Trivial-Only "false";
56 Remove "true";
57 Only-Source "";
58 Diff-Only "false";
59 Tar-Only "false";
60 Build-Dep-Automatic "true";
61 Show-User-Simulation-Note "true";
62 };
63
64 Cache
65 {
66 Important "false";
67 AllVersions "false";
68 GivenOnly "false";
69 RecurseDepends "false";
70 ShowFull "false";
71 Generate "true";
72 NamesOnly "false";
73 AllNames "false";
74 Installed "false";
75 };
76
77 CDROM
78 {
79 Rename "false";
80 NoMount "false";
81 Fast "false";
82 NoAct "false";
83 };
84
85 Update
86 {
87 Pre-Invoke {"touch /var/lib/apt/pre-update-stamp"; };
88 Post-Invoke {"touch /var/lib/apt/post-update-stamp"; };
89 };
90
91 Authentication
92 {
93 TrustCDROM "false"; // consider the CD-ROM always trusted
94 };
95
96 // Some general options
97 Ignore-Hold "false";
98 Clean-Installed "true";
99 Immediate-Configure "true"; // DO NOT turn this off, see the man page
100 Force-LoopBreak "false"; // DO NOT turn this on, see the man page
101 Cache-Start "20971520";
102 Cache-Grow "1048576";
103 Cache-Limit "0";
104 Default-Release "";
105
106 // consider Recommends, Suggests as important dependencies that should
107 // be installed by default
108 Install-Recommends "true";
109 Install-Suggests "false";
110
111 // consider dependencies of packages in this section manual
112 Never-MarkAuto-Sections {"metapackages"; "universe/metapackages"; };
113
114 // Write progress messages on this fd (for stuff like base-config)
115 Status-Fd "-1";
116 // Keep the list of FDs open (normally apt closes all fds when it
117 // does a ExecFork)
118 Keep-Fds {};
119
120 // control parameters for cron jobs by /etc/cron.daily/apt
121 Periodic
122 {
123 BackupArchiveInterval "0";
124 // - Backup after n-days if archive contents changed.(0=disable)
125
126 BackupLevel "3";
127 // - Backup level.(0=disable), 1 is invalid.
128
129 // APT::Archives::MaxAge "0"; (old, deprecated)
130 MaxAge "0"; // (new)
131 // - Set maximum allowed age of a cache package file. If a cache
132 // package file is older it is deleted (0=disable)
133
134 // APT::Archives::MinAge "2"; (old, deprecated)
135 MinAge "2"; // (new)
136 // - Set minimum age of a package file. If a file is younger it
137 // will not be deleted (0=disable). Useful to prevent races
138 // and to keep backups of the packages for emergency.
139
140 // APT::Archives::MaxSize "0"; (old, deprecated)
141 MaxSize "0"; // (new)
142 // - Set maximum size of the cache in MB (0=disable). If the cache
143 // is bigger, cached package files are deleted until the size
144 // requirement is met (the oldest packages will be deleted
145 // first).
146
147 Update-Package-Lists "0";
148 // - Do "apt-get update" automatically every n-days (0=disable)
149 //
150 Download-Upgradeable-Packages "0";
151 // - Do "apt-get upgrade --download-only" every n-days (0=disable)
152 //
153 Unattended-Upgrade "0";
154 // - Run the "unattended-upgrade" security upgrade script
155 // every n-days (0=disabled)
156 // Requires the package "unattended-upgrades" and will write
157 // a log in /var/log/unattended-upgrades
158 //
159 AutocleanInterval "0";
160 // - Do "apt-get autoclean" every n-days (0=disable)
161
162 Verbose "0";
163 // - Send report mail to root
164 // 0: no report (or null string)
165 // 1: progress report (actually any string)
166 // 2: + command outputs (remove -qq, remove 2>/dev/null, add -d)
167 // 3: + trace on
168 };
169 };
170
171 // Options for the downloading routines
172 Acquire
173 {
174 Queue-Mode "host"; // host|access
175 Retries "0";
176 Source-Symlinks "true";
177 ForceHash "sha256"; // hashmethod used for expected hash: sha256, sha1 or md5sum
178
179 PDiffs "true"; // try to get the IndexFile diffs
180 PDiffs::FileLimit "4"; // don't use diffs if we would need more than 4 diffs
181 PDiffs::SizeLimit "50"; // don't use diffs if size of all patches excess
182 // 50% of the size of the original file
183
184 Check-Valid-Until "true";
185 Max-ValidTime "864000"; // 10 days
186 Max-ValidTime::Debian-Security "604800"; // 7 days, label specific configuration
187
188 // HTTP method configuration
189 http
190 {
191 Proxy "http://127.0.0.1:3128";
192 Proxy::http.us.debian.org "DIRECT"; // Specific per-host setting
193 Timeout "120";
194 Pipeline-Depth "5";
195 AllowRedirect "true";
196
197 // Cache Control. Note these do not work with Squid 2.0.2
198 No-Cache "false";
199 Max-Age "86400"; // 1 Day age on index files
200 No-Store "false"; // Prevent the cache from storing archives
201 Dl-Limit "7"; // 7Kb/sec maximum download rate
202 User-Agent "Debian APT-HTTP/1.3";
203 };
204
205
206
207 // HTTPS method configuration: uses the http
208 // - proxy config
209 // - cache-control values
210 // - Dl-Limit, Timout, ... values
211 // if not set explicit for https
212 //
213 // see /usr/share/doc/apt/examples/apt-https-method-example.conf.gz
214 // for more examples
215 https
216 {
217 Verify-Peer "false";
218 SslCert "/etc/apt/some.pem";
219 CaPath "/etc/ssl/certs";
220 Verify-Host "true";
221 AllowRedirect "true";
222
223 Timeout "120";
224 AllowRedirect "true";
225
226 // Cache Control. Note these do not work with Squid 2.0.2
227 No-Cache "false";
228 Max-Age "86400"; // 1 Day age on index files
229 No-Store "false"; // Prevent the cache from storing archives
230 Dl-Limit "7"; // 7Kb/sec maximum download rate
231
232 User-Agent "Debian APT-CURL/1.0";
233 };
234
235 ftp
236 {
237 Proxy "ftp://127.0.0.1/";
238 Proxy::http.us.debian.org "DIRECT"; // Specific per-host setting
239
240 /* Required script to perform proxy login. This example should work
241 for tisfwtk */
242 ProxyLogin
243 {
244 "USER $(PROXY_USER)";
245 "PASS $(PROXY_PASS)";
246 "USER $(SITE_USER)@$(SITE):$(SITE_PORT)";
247 "PASS $(SITE_PASS)";
248 };
249
250 Timeout "120";
251
252 /* Passive mode control, proxy, non-proxy and per-host. Pasv mode
253 is preferred if possible */
254 Passive "true";
255 Proxy::Passive "true";
256 Passive::http.us.debian.org "true"; // Specific per-host setting
257 };
258
259 cdrom
260 {
261 // do auto detection of the cdrom mountpoint
262 AutoDetect "true";
263 // when auto-detecting, only look for cdrom/dvd. when this is false
264 // it will support any removable device as a "cdrom" source
265 CdromOnly "true";
266
267 // cdrom mountpoint (needs to be defined in fstab if AutoDetect is not used)
268 mount "/cdrom";
269
270 // You need the trailing slash!
271 "/cdrom/"
272 {
273 Mount "sleep 1000";
274 UMount "sleep 500";
275 }
276 };
277
278 gpgv
279 {
280 Options {"--ignore-time-conflict";} // not very useful on a normal system
281 };
282
283 CompressionTypes
284 {
285 bz2 "bzip2";
286 lzma "lzma";
287 gz "gzip";
288
289 Order { "uncompressed"; "gz"; "lzma"; "bz2"; };
290 };
291
292 Languages
293 {
294 "environment";
295 "de";
296 "en";
297 "none";
298 "fr";
299 };
300
301 // Location of the changelogs with the placeholder @CHANGEPATH@ (e.g. "main/a/apt/apt_1.1")
302 Changelogs::URI::Origin::Debian "http://metadata.ftp-master.debian.org/changelogs/@CHANGEPATH@_changelog";
303 };
304
305 // Directory layout
306 Dir "/"
307 {
308 // Location of the state dir
309 State "var/lib/apt/"
310 {
311 Lists "lists/";
312 status "/var/lib/dpkg/status";
313 extended_states "extended_states";
314 cdroms "cdroms.list";
315 };
316
317 // Location of the cache dir
318 Cache "var/cache/apt/" {
319 Archives "archives/";
320 // backup directory created by /etc/cron.daily/apt
321 Backup "backup/";
322 srcpkgcache "srcpkgcache.bin";
323 pkgcache "pkgcache.bin";
324 };
325
326 // Config files
327 Etc "etc/apt/" {
328 Main "apt.conf";
329 Netrc "auth.conf";
330 Parts "apt.conf.d/";
331 Preferences "preferences";
332 PreferencesParts "preferences.d";
333 SourceList "sources.list";
334 SourceParts "sources.list.d";
335 VendorList "vendors.list";
336 VendorParts "vendors.list.d";
337 Trusted "trusted.gpg";
338 TrustedParts "trusted.gpg.d";
339 };
340
341 // Locations of binaries
342 Bin {
343 methods "/usr/lib/apt/methods/";
344 gzip "/bin/gzip";
345 gpg "/usr/bin/gpgv";
346 dpkg "/usr/bin/dpkg";
347 dpkg-source "/usr/bin/dpkg-source";
348 dpkg-buildpackage "/usr/bin/dpkg-buildpackage";
349 apt-get "/usr/bin/apt-get";
350 apt-cache "/usr/bin/apt-cache";
351 };
352
353 // Location of the logfile
354 Log "var/log/apt" {
355 Terminal "term.log";
356 History "history.log";
357 };
358
359 // Media
360 Media
361 {
362 // Media AutoDetect mount path
363 MountPath "/media/apt";
364 };
365
366 // Media
367 Media
368 {
369 // Media AutoDetect mount path
370 MountPath "/media/apt";
371 };
372 };
373
374 // Things that effect the APT dselect method
375 DSelect
376 {
377 Clean "auto"; // always|auto|prompt|never
378 Options "-f";
379 UpdateOptions "";
380 PromptAfterUpdate "no";
381 CheckDir "no";
382 }
383
384 DPkg
385 {
386 // let apt aggressivly use dpkg triggers
387 NoTriggers "true";
388 ConfigurePending "true";
389
390 // Probably don't want to use force-downgrade..
391 Options {"--force-overwrite";"--force-downgrade";}
392
393 // Auto re-mounting of a readonly /usr
394 Pre-Invoke {"mount -o remount,rw /usr";};
395 Post-Invoke {"mount -o remount,ro /usr";};
396
397 Chroot-Directory "/";
398
399 // Prevents daemons from getting cwd as something mountable (default)
400 Run-Directory "/";
401
402 // Build options for apt-get source --compile
403 Build-Options "-b -uc";
404
405 // Pre-configure all packages before they are installed using debconf.
406 Pre-Install-Pkgs {"dpkg-preconfigure --apt --priority=low --frontend=dialog";};
407
408 // Flush the contents of stdin before forking dpkg.
409 FlushSTDIN "true";
410
411 // Control the size of the command line passed to dpkg.
412 MaxArgBytes 32768;
413 MaxArgs 8192;
414
415 // controls if apt will apport on the first dpkg error or if it
416 // tries to install as many packages as possible
417 StopOnError "true";
418 }
419
420 /* Options you can set to see some debugging text They correspond to names
421 of classes in the source code */
422 Debug
423 {
424 pkgProblemResolver "false";
425 pkgProblemResolver::ShowScores "false";
426 pkgDepCache::AutoInstall "false"; // what packages apt install to satify dependencies
427 pkgDepCache::Marker "false";
428 pkgCacheGen "false";
429 pkgAcquire "false";
430 pkgAcquire::Worker "false";
431 pkgAcquire::Auth "false";
432 pkgDPkgPM "false";
433 pkgDPkgProgressReporting "false";
434 pkgOrderList "false";
435 pkgPackageManager "false"; // OrderList/Configure debugging
436 pkgAutoRemove "false"; // show information about automatic removes
437 BuildDeps "false";
438 pkgInitialize "false"; // This one will dump the configuration space
439 NoLocking "false";
440 Acquire::Ftp "false"; // Show ftp command traffic
441 Acquire::Http "false"; // Show http command traffic
442 Acquire::Https "false"; // Show https debug
443 Acquire::gpgv "false"; // Show the gpgv traffic
444 Acquire::cdrom "false"; // Show cdrom debug output
445 aptcdrom "false"; // Show found package files
446 IdentCdrom "false";
447 acquire::netrc "false"; // netrc parser
448 RunScripts "false"; // debug invocation of external scripts
449 }
450
451 pkgCacheGen::Essential "native"; // other modes: all, none, installed
452
453 /* Whatever you do, do not use this configuration file!! Take out ONLY
454 the portions you need! */
455 This Is Not A Valid Config File