]> git.saurik.com Git - apt.git/blob - doc/examples/apt.conf
Bugs
[apt.git] / doc / examples / apt.conf
1 // $Id: apt.conf,v 1.11 1998/11/11 06:54:18 jgg 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 a completely
4 valid file.
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.
16 */
17
18 // Options for APT in general
19 APT {
20 Architecture "i386";
21
22 // Options for apt-get
23 Get {
24 Download-Only "false";
25 Simulate "false";
26 Assume-Yes "false";
27 Fix-Broken "false";
28 Show-Upgraded "false";
29 };
30
31 // Some general options
32 Ingore-Hold "false";
33 };
34
35 // Options for the downloading routines
36 Acquire
37 {
38 Queue-Mode "host"; // host|access
39
40 /* http
41 {
42 Proxy "http://127.0.0.1:3128";
43 Proxy::http.us.debian.org "DIRECT"; // Specific per-host setting
44 };*/
45 };
46
47 // Directory layout
48 Dir
49 {
50 // Location of the state dir
51 State "/var/state/apt/"
52 {
53 lists "lists/";
54 xstatus "xstatus";
55 userstatus "status.user";
56 status "/var/lib/dpkg/status";
57 };
58
59 // Location of the cache dir
60 Cache "/var/cache/apt/" {
61 archives "archives/";
62 srcpkgcache "srcpkgcache.bin";
63 pkgcache "pkgcache.bin";
64 };
65
66 // Config files
67 Etc "/etc/apt/" {
68 sourcelist "sources.list";
69 main "apt.conf";
70 };
71
72 // Locations of binaries
73 Bin {
74 methods "/home/jgg/work/apt/build/bin/methods/";
75 gzip "/bin/gzip";
76 };
77 };
78
79 DSelect {
80
81 }
82
83 /* Options you can set to see some debugging text They corrispond to names
84 of classes in the source code */
85 Debug {
86 pkgProblemResolver "false";
87 pkgAcquire "false";
88 pkgAcquire::Worker "false";
89
90 pkgInitialize "false"; // This one will dump the configuration space
91 }