Http download fixes
[ntk/apt.git] / doc / examples / apt.conf
CommitLineData
2b154e53 1// $Id: apt.conf,v 1.25 1999/02/27 22:29:11 jgg Exp $
0a8e3465
AL
2/* This file is an index of all APT configuration directives. It should
3 NOT actually be used as a real config file, though it is a completely
4 valid file.
93bf083d 5
6dd55be7 6 In some instances involving filenames it is possible to set the default
93bf083d
AL
7 directory when the path is evaluated. This means you can use relative
8 paths within the sub scope.
9
10 The configuration directives are specified in a tree with {} designating
11 a subscope relative to the tag before the {}. You can further specify
12 a subscope using scope notation eg,
13 APT::Architecture "i386";
14 This is prefixed with the current scope. Scope notation must be used
15 if an option is specified on the command line with -o.
0a8e3465
AL
16*/
17
93bf083d 18// Options for APT in general
0a8e3465
AL
19APT {
20 Architecture "i386";
21
93bf083d 22 // Options for apt-get
0a8e3465
AL
23 Get {
24 Download-Only "false";
25 Simulate "false";
26 Assume-Yes "false";
dcc48266 27 Force-Yes "false"; // I would never set this.
0a8e3465 28 Fix-Broken "false";
30e1eab5 29 Fix-Missing "false";
0a8e3465 30 Show-Upgraded "false";
3d8fd174 31 No-Upgrade "false";
7d8afa39 32 Print-URIs "false";
3d8fd174
AL
33 };
34
35 Cache {
36 Important "false";
0a8e3465 37 };
c88edf1d 38
3d8fd174
AL
39 CDROM {
40 Rename "false";
41 NoMount "false";
42 Fast "false";
43 NoAct "false";
44 };
45
93bf083d 46 // Some general options
c88edf1d 47 Ingore-Hold "false";
b780bc1b 48 Immediate-Configure "true"; // DO NOT turn this off, see the man page
0a8e3465
AL
49};
50
93bf083d 51// Options for the downloading routines
0a8a80e5
AL
52Acquire
53{
769f7e1a 54 Queue-Mode "host"; // host|access
2b154e53 55 Retries "0";
22380cf2 56
c3c459fc
AL
57 // HTTP method configuration
58 http
22380cf2
AL
59 {
60 Proxy "http://127.0.0.1:3128";
c3c459fc 61 Proxy::http.us.debian.org "DIRECT"; // Specific per-host setting
2b154e53 62 Timeout "120";
5c2cb6e4
AL
63
64 // Cache Control. Note these do not work with Squid 2.0.2
65 No-Cache "false";
66 Max-Age "86400"; // 1 Day age on index files
67 No-Store "false"; // Prevent the cache from storing archives
c3c459fc 68 };
dcc48266
AL
69
70 cdrom
71 {
72 Mount "/cdrom";
73 };
0a8a80e5
AL
74};
75
93bf083d 76// Directory layout
0a8e3465
AL
77Dir
78{
93bf083d 79 // Location of the state dir
0a8e3465
AL
80 State "/var/state/apt/"
81 {
82 lists "lists/";
83 xstatus "xstatus";
84 userstatus "status.user";
42c90c42
AL
85 status "/var/lib/dpkg/status";
86 cdroms "cdroms.list";
0a8e3465
AL
87 };
88
93bf083d 89 // Location of the cache dir
0a8e3465
AL
90 Cache "/var/cache/apt/" {
91 archives "archives/";
92 srcpkgcache "srcpkgcache.bin";
93 pkgcache "pkgcache.bin";
94 };
95
93bf083d 96 // Config files
0a8e3465 97 Etc "/etc/apt/" {
93bf083d 98 sourcelist "sources.list";
0a8e3465
AL
99 main "apt.conf";
100 };
024835dc 101
93bf083d 102 // Locations of binaries
024835dc 103 Bin {
3d8fd174 104 methods "/usr/lib/apt/methods/";
93bf083d 105 gzip "/bin/gzip";
30e1eab5 106 dpkg "/usr/bin/dpkg";
7a1b1f8b
AL
107 apt-get "/usr/bin/apt-get";
108 apt-cache "/usr/bin/apt-get";
024835dc 109 };
0a8e3465
AL
110};
111
c3c459fc 112// Things that effect the APT dselect method
0a8e3465 113DSelect {
dcc48266 114 Clean "auto"; // always|auto|prompt|never
7a1b1f8b
AL
115 Options "-f";
116 UpdateOptions "";
c217f42a 117 PromptAfterUpdate "no";
0a8e3465
AL
118}
119
6dd55be7
AL
120DPkg {
121 Options {"--force-downgrade";}
122 Pre-Invoke {"mount -o remount,rw /usr";};
123 Post-Invoke {"mount -o remount,ro /usr";};
cf544e14 124 Run-Direcotry "/";
6dd55be7
AL
125}
126
93bf083d
AL
127/* Options you can set to see some debugging text They corrispond to names
128 of classes in the source code */
0a8e3465 129Debug {
93bf083d 130 pkgProblemResolver "false";
0a8a80e5 131 pkgAcquire "false";
93bf083d 132 pkgAcquire::Worker "false";
30e1eab5 133 pkgDPkgPM "false";
93bf083d
AL
134
135 pkgInitialize "false"; // This one will dump the configuration space
c3c459fc 136 NoLocking "false";
0a8e3465 137}