]> git.saurik.com Git - apt.git/blame - doc/examples/apt.conf
Working acquire code
[apt.git] / doc / examples / apt.conf
CommitLineData
bfd22fc0 1// $Id: apt.conf,v 1.9 1998/11/05 07:21:46 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
AL
5
6 In some instances involing filenames it is possible to set the default
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";
27 Fix-Broken "false";
28 Show-Upgraded "false";
29 };
c88edf1d 30
93bf083d 31 // Some general options
c88edf1d 32 Ingore-Hold "false";
0a8e3465
AL
33};
34
93bf083d 35// Options for the downloading routines
0a8a80e5
AL
36Acquire
37{
38 Queue-Mode "access"; // host|access
22380cf2 39
bfd22fc0 40/* http
22380cf2
AL
41 {
42 Proxy "http://127.0.0.1:3128";
bfd22fc0 43 };*/
0a8a80e5
AL
44};
45
93bf083d 46// Directory layout
0a8e3465
AL
47Dir
48{
93bf083d 49 // Location of the state dir
0a8e3465
AL
50 State "/var/state/apt/"
51 {
52 lists "lists/";
53 xstatus "xstatus";
54 userstatus "status.user";
55 status "/var/lib/dpkg/status";
56 };
57
93bf083d 58 // Location of the cache dir
0a8e3465
AL
59 Cache "/var/cache/apt/" {
60 archives "archives/";
61 srcpkgcache "srcpkgcache.bin";
62 pkgcache "pkgcache.bin";
63 };
64
93bf083d 65 // Config files
0a8e3465 66 Etc "/etc/apt/" {
93bf083d 67 sourcelist "sources.list";
0a8e3465
AL
68 main "apt.conf";
69 };
024835dc 70
93bf083d 71 // Locations of binaries
024835dc
AL
72 Bin {
73 methods "/home/jgg/work/apt/build/bin/methods/";
93bf083d 74 gzip "/bin/gzip";
024835dc 75 };
0a8e3465
AL
76};
77
78DSelect {
79
80}
81
93bf083d
AL
82/* Options you can set to see some debugging text They corrispond to names
83 of classes in the source code */
0a8e3465 84Debug {
93bf083d 85 pkgProblemResolver "false";
0a8a80e5 86 pkgAcquire "false";
93bf083d
AL
87 pkgAcquire::Worker "false";
88
89 pkgInitialize "false"; // This one will dump the configuration space
0a8e3465 90}