]> git.saurik.com Git - apt.git/blob - doc/examples/apt.conf
More bug updates
[apt.git] / doc / examples / apt.conf
1 // $Id: apt.conf,v 1.18 1998/12/06 22:51:14 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 Force-Yes "false"; // I would never set this.
28 Fix-Broken "false";
29 Fix-Missing "false";
30 Show-Upgraded "false";
31 No-Upgrade "false";
32 };
33
34 Cache {
35 Important "false";
36 };
37
38 CDROM {
39 Rename "false";
40 NoMount "false";
41 Fast "false";
42 NoAct "false";
43 };
44
45 // Some general options
46 Ingore-Hold "false";
47 };
48
49 // Options for the downloading routines
50 Acquire
51 {
52 Queue-Mode "host"; // host|access
53
54 // HTTP method configuration
55 http
56 {
57 Proxy "http://127.0.0.1:3128";
58 Proxy::http.us.debian.org "DIRECT"; // Specific per-host setting
59
60 // Cache Control. Note these do not work with Squid 2.0.2
61 No-Cache "false";
62 Max-Age "86400"; // 1 Day age on index files
63 No-Store "false"; // Prevent the cache from storing archives
64 };
65
66 cdrom
67 {
68 Mount "/cdrom";
69 };
70 };
71
72 // Directory layout
73 Dir
74 {
75 // Location of the state dir
76 State "/var/state/apt/"
77 {
78 lists "lists/";
79 xstatus "xstatus";
80 userstatus "status.user";
81 status "/var/lib/dpkg/status";
82 };
83
84 // Location of the cache dir
85 Cache "/var/cache/apt/" {
86 archives "archives/";
87 srcpkgcache "srcpkgcache.bin";
88 pkgcache "pkgcache.bin";
89 };
90
91 // Config files
92 Etc "/etc/apt/" {
93 sourcelist "sources.list";
94 main "apt.conf";
95 };
96
97 // Locations of binaries
98 Bin {
99 methods "/usr/lib/apt/methods/";
100 gzip "/bin/gzip";
101 dpkg "/usr/bin/dpkg";
102 apt-get "/usr/bin/apt-get";
103 apt-cache "/usr/bin/apt-get";
104 };
105 };
106
107 // Things that effect the APT dselect method
108 DSelect {
109 Clean "auto"; // always|auto|prompt|never
110 Options "-f";
111 UpdateOptions "";
112 PromptAfterUpdate "no";
113 }
114
115 /* Options you can set to see some debugging text They corrispond to names
116 of classes in the source code */
117 Debug {
118 pkgProblemResolver "false";
119 pkgAcquire "false";
120 pkgAcquire::Worker "false";
121 pkgDPkgPM "false";
122
123 pkgInitialize "false"; // This one will dump the configuration space
124 NoLocking "false";
125 }