]> git.saurik.com Git - apt.git/blame_incremental - doc/examples/configure-index
* methods/https.cc:
[apt.git] / doc / examples / configure-index
... / ...
CommitLineData
1// $Id: configure-index,v 1.10 2004/07/17 19:37:16 mdz Exp $
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 (except for the
4 last line) a completely valid file. Most of the options have sane default
5 values, unless you have specific needs you should NOT include arbitary
6 items in a custom configuration.
7
8 In some instances involving filenames it is possible to set the default
9 directory when the path is evaluated. This means you can use relative
10 paths within the sub scope.
11
12 The configuration directives are specified in a tree with {} designating
13 a subscope relative to the tag before the {}. You can further specify
14 a subscope using scope notation eg,
15 APT::Architecture "i386";
16 This is prefixed with the current scope. Scope notation must be used
17 if an option is specified on the command line with -o.
18*/
19
20quiet "0";
21
22// Options for APT in general
23APT
24{
25 Architecture "i386";
26 Build-Essential "build-essential";
27
28 // Options for apt-get
29 Get
30 {
31 Arch-Only "false";
32 Download-Only "false";
33 Simulate "false";
34 Assume-Yes "false";
35 Force-Yes "false"; // I would never set this.
36 Fix-Broken "false";
37 Fix-Missing "false";
38 Show-Upgraded "false";
39 Show-Versions "false";
40 Upgrade "true";
41 Print-URIs "false";
42 Compile "false";
43 Download "true";
44 Purge "false";
45 List-Cleanup "true";
46 ReInstall "false";
47 Trivial-Only "false";
48 Remove "true";
49 Only-Source "";
50 Diff-Only "false";
51 Tar-Only "false";
52 };
53
54 Cache
55 {
56 Important "false";
57 AllVersions "false";
58 GivenOnly "false";
59 RecurseDepends "false";
60 ShowFull "false";
61 Generate "true";
62 NamesOnly "false";
63 AllNames "false";
64 Installed "false";
65 };
66
67 CDROM
68 {
69 Rename "false";
70 NoMount "false";
71 Fast "false";
72 NoAct "false";
73 };
74
75 Authentication
76 {
77 TrustCDROM "false"; // consider the CDROM always trusted
78 };
79
80 GPGV
81 {
82 TrustedKeyring "/etc/apt/trusted.gpg";
83 };
84
85 // Some general options
86 Ignore-Hold "false";
87 Clean-Installed "true";
88 Immediate-Configure "true"; // DO NOT turn this off, see the man page
89 Force-LoopBreak "false"; // DO NOT turn this on, see the man page
90 Cache-Limit "4194304";
91 Default-Release "";
92
93
94 // Write progress messages on this fd (for stuff like base-config)
95 Status-Fd "-1";
96 // Keep the list of FDs open (normally apt closes all fds when it
97 // does a ExecFork)
98 Keep-Fds {};
99};
100
101// Options for the downloading routines
102Acquire
103{
104 Queue-Mode "host"; // host|access
105 Retries "0";
106 Source-Symlinks "true";
107
108 // HTTP method configuration
109 http
110 {
111 Proxy "http://127.0.0.1:3128";
112 Proxy::http.us.debian.org "DIRECT"; // Specific per-host setting
113 Timeout "120";
114 Pipeline-Depth "5";
115
116 // Cache Control. Note these do not work with Squid 2.0.2
117 No-Cache "false";
118 Max-Age "86400"; // 1 Day age on index files
119 No-Store "false"; // Prevent the cache from storing archives
120 Dl-Limit "7"; // 7Kb/sec maximum download rate
121 };
122
123 // HTTPS method configuration:
124 // - uses the http proxy config
125 // - uses the http cache-control values
126 // - uses the http Dl-Limit values
127 https
128 {
129 Verify-Peer "false";
130 SslCert "/etc/apt/some.pem";
131 CaPath "/etc/ssl/certs";
132 Verify-Host" "2";
133 };
134
135 ftp
136 {
137 Proxy "ftp://127.0.0.1/";
138 Proxy::http.us.debian.org "DIRECT"; // Specific per-host setting
139
140 /* Required script to perform proxy login. This example should work
141 for tisfwtk */
142 ProxyLogin
143 {
144 "USER $(PROXY_USER)";
145 "PASS $(PROXY_PASS)";
146 "USER $(SITE_USER)@$(SITE):$(SITE_PORT)";
147 "PASS $(SITE_PASS)";
148 };
149
150 Timeout "120";
151
152 /* Passive mode control, proxy, non-proxy and per-host. Pasv mode
153 is prefered if possible */
154 Passive "true";
155 Proxy::Passive "true";
156 Passive::http.us.debian.org "true"; // Specific per-host setting
157 };
158
159 cdrom
160 {
161 mount "/cdrom";
162
163 // You need the trailing slash!
164 "/cdrom/"
165 {
166 Mount "sleep 1000";
167 UMount "sleep 500";
168 }
169 };
170
171 gpgv
172 {
173 Options {"--ignore-time-conflict";} // not very usefull on a normal system
174 };
175};
176
177// Directory layout
178Dir "/"
179{
180 // Location of the state dir
181 State "var/lib/apt/"
182 {
183 Lists "lists/";
184 xstatus "xstatus";
185 userstatus "status.user";
186 status "/var/lib/dpkg/status";
187 cdroms "cdroms.list";
188 };
189
190 // Location of the cache dir
191 Cache "var/cache/apt/" {
192 Archives "archives/";
193 srcpkgcache "srcpkgcache.bin";
194 pkgcache "pkgcache.bin";
195 };
196
197 // Config files
198 Etc "etc/apt/" {
199 SourceList "sources.list";
200 Main "apt.conf";
201 Preferences "preferences";
202 Parts "apt.conf.d/";
203 };
204
205 // Locations of binaries
206 Bin {
207 methods "/usr/lib/apt/methods/";
208 gzip "/bin/gzip";
209 gpg "/usr/bin/gpgv";
210 dpkg "/usr/bin/dpkg";
211 dpkg-source "/usr/bin/dpkg-source";
212 dpkg-buildpackage "/usr/bin/dpkg-buildpackage";
213 apt-get "/usr/bin/apt-get";
214 apt-cache "/usr/bin/apt-cache";
215 };
216};
217
218// Things that effect the APT dselect method
219DSelect
220{
221 Clean "auto"; // always|auto|prompt|never
222 Options "-f";
223 UpdateOptions "";
224 PromptAfterUpdate "no";
225 CheckDir "no";
226}
227
228DPkg
229{
230 // Probably don't want to use force-downgrade..
231 Options {"--force-overwrite";"--force-downgrade";}
232
233 // Auto re-mounting of a readonly /usr
234 Pre-Invoke {"mount -o remount,rw /usr";};
235 Post-Invoke {"mount -o remount,ro /usr";};
236
237 // Prevents daemons from getting cwd as something mountable (default)
238 Run-Directory "/";
239
240 // Build options for apt-get source --compile
241 Build-Options "-b -uc";
242
243 // Pre-configure all packages before they are installed using debconf.
244 Pre-Install-Pkgs {"dpkg-preconfigure --apt --priority=low --frontend=dialog";};
245
246 // Flush the contents of stdin before forking dpkg.
247 FlushSTDIN "true";
248
249 // Control the size of the command line passed to dpkg.
250 MaxBytes 1024;
251 MaxArgs 350;
252
253 // controls if apt will apport on the first dpkg error or if it
254 // tries to install as many packages as possible
255 StopOnError "true";
256}
257
258/* Options you can set to see some debugging text They correspond to names
259 of classes in the source code */
260Debug
261{
262 pkgProblemResolver "false";
263 pkgDepCache::AutoInstall "false"; // what packages apt install to satify dependencies
264 pkgAcquire "false";
265 pkgAcquire::Worker "false";
266 pkgAcquire::Auth "false";
267 pkgDPkgPM "false";
268 pkgDPkgProgressReporting "false";
269 pkgOrderList "false";
270 BuildDeps "false";
271
272 pkgInitialize "false"; // This one will dump the configuration space
273 NoLocking "false";
274 Acquire::Ftp "false"; // Show ftp command traffic
275 Acquire::Http "false"; // Show http command traffic
276 Acquire::Https "false"; // Show https debug
277 Acquire::gpgv "false"; // Show the gpgv traffic
278 aptcdrom "false"; // Show found package files
279 IdentCdrom "false";
280
281}
282
283/* Whatever you do, do not use this configuration file!! Take out ONLY
284 the portions you need! */
285This Is Not A Valid Config File