Minor fixes for FTP support
[ntk/apt.git] / doc / examples / apt.conf
1 // $Id: apt.conf,v 1.27 1999/03/15 08:10:39 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 involving 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 Print-URIs "false";
33 };
34
35 Cache {
36 Important "false";
37 };
38
39 CDROM {
40 Rename "false";
41 NoMount "false";
42 Fast "false";
43 NoAct "false";
44 };
45
46 // Some general options
47 Ingore-Hold "false";
48 Immediate-Configure "true"; // DO NOT turn this off, see the man page
49 };
50
51 // Options for the downloading routines
52 Acquire
53 {
54 Queue-Mode "host"; // host|access
55 Retries "0";
56
57 // HTTP method configuration
58 http
59 {
60 Proxy "http://127.0.0.1:3128";
61 Proxy::http.us.debian.org "DIRECT"; // Specific per-host setting
62 Timeout "120";
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
68 };
69
70 ftp
71 {
72 Proxy "ftp://127.0.0.1/";
73 Proxy::http.us.debian.org "DIRECT"; // Specific per-host setting
74
75 // Required script to perform proxy login
76 ProxyLogin
77 {
78 "USER $(PROXY_USER)";
79 "PASS $(PROXY_PASS)";
80 "USER $(SITE_USER)@$(SITE):$(SITE_PORT)";
81 "PASS $(SITE_PASS)";
82 };
83
84 Timeout "120";
85 Passive "true";
86 Proxy::Passive "true";
87 Passive::http.us.debian.org "true"; // Specific per-host setting
88 };
89
90 cdrom
91 {
92 Mount "/cdrom";
93 };
94 };
95
96 // Directory layout
97 Dir
98 {
99 // Location of the state dir
100 State "/var/state/apt/"
101 {
102 lists "lists/";
103 xstatus "xstatus";
104 userstatus "status.user";
105 status "/var/lib/dpkg/status";
106 cdroms "cdroms.list";
107 };
108
109 // Location of the cache dir
110 Cache "/var/cache/apt/" {
111 archives "archives/";
112 srcpkgcache "srcpkgcache.bin";
113 pkgcache "pkgcache.bin";
114 };
115
116 // Config files
117 Etc "/etc/apt/" {
118 sourcelist "sources.list";
119 main "apt.conf";
120 };
121
122 // Locations of binaries
123 Bin {
124 methods "/usr/lib/apt/methods/";
125 gzip "/bin/gzip";
126 dpkg "/usr/bin/dpkg";
127 apt-get "/usr/bin/apt-get";
128 apt-cache "/usr/bin/apt-get";
129 };
130 };
131
132 // Things that effect the APT dselect method
133 DSelect {
134 Clean "auto"; // always|auto|prompt|never
135 Options "-f";
136 UpdateOptions "";
137 PromptAfterUpdate "no";
138 }
139
140 DPkg {
141 Options {"--force-downgrade";}
142 Pre-Invoke {"mount -o remount,rw /usr";};
143 Post-Invoke {"mount -o remount,ro /usr";};
144 Run-Directory "/";
145 }
146
147 /* Options you can set to see some debugging text They corrispond to names
148 of classes in the source code */
149 Debug {
150 pkgProblemResolver "false";
151 pkgAcquire "false";
152 pkgAcquire::Worker "false";
153 pkgDPkgPM "false";
154
155 pkgInitialize "false"; // This one will dump the configuration space
156 NoLocking "false";
157 }