]>
Commit | Line | Data |
---|---|---|
6d5dd02a | 1 | // $Id: apt.conf,v 1.27 1999/03/15 08:10:39 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 | 5 | |
6dd55be7 | 6 | In some instances involving filenames it is possible to set the default |
93bf083d AL |
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 |
19 | APT { |
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"; | |
dcc48266 | 27 | Force-Yes "false"; // I would never set this. |
0a8e3465 | 28 | Fix-Broken "false"; |
30e1eab5 | 29 | Fix-Missing "false"; |
0a8e3465 | 30 | Show-Upgraded "false"; |
3d8fd174 | 31 | No-Upgrade "false"; |
7d8afa39 | 32 | Print-URIs "false"; |
3d8fd174 AL |
33 | }; |
34 | ||
35 | Cache { | |
36 | Important "false"; | |
0a8e3465 | 37 | }; |
c88edf1d | 38 | |
3d8fd174 AL |
39 | CDROM { |
40 | Rename "false"; | |
41 | NoMount "false"; | |
42 | Fast "false"; | |
43 | NoAct "false"; | |
44 | }; | |
45 | ||
93bf083d | 46 | // Some general options |
c88edf1d | 47 | Ingore-Hold "false"; |
b780bc1b | 48 | Immediate-Configure "true"; // DO NOT turn this off, see the man page |
0a8e3465 AL |
49 | }; |
50 | ||
93bf083d | 51 | // Options for the downloading routines |
0a8a80e5 AL |
52 | Acquire |
53 | { | |
769f7e1a | 54 | Queue-Mode "host"; // host|access |
2b154e53 | 55 | Retries "0"; |
22380cf2 | 56 | |
c3c459fc AL |
57 | // HTTP method configuration |
58 | http | |
22380cf2 AL |
59 | { |
60 | Proxy "http://127.0.0.1:3128"; | |
c3c459fc | 61 | Proxy::http.us.debian.org "DIRECT"; // Specific per-host setting |
2b154e53 | 62 | Timeout "120"; |
5c2cb6e4 AL |
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 | |
c3c459fc | 68 | }; |
6d5dd02a AL |
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 | }; | |
dcc48266 AL |
89 | |
90 | cdrom | |
91 | { | |
92 | Mount "/cdrom"; | |
93 | }; | |
0a8a80e5 AL |
94 | }; |
95 | ||
93bf083d | 96 | // Directory layout |
0a8e3465 AL |
97 | Dir |
98 | { | |
93bf083d | 99 | // Location of the state dir |
0a8e3465 AL |
100 | State "/var/state/apt/" |
101 | { | |
102 | lists "lists/"; | |
103 | xstatus "xstatus"; | |
104 | userstatus "status.user"; | |
42c90c42 AL |
105 | status "/var/lib/dpkg/status"; |
106 | cdroms "cdroms.list"; | |
0a8e3465 AL |
107 | }; |
108 | ||
93bf083d | 109 | // Location of the cache dir |
0a8e3465 AL |
110 | Cache "/var/cache/apt/" { |
111 | archives "archives/"; | |
112 | srcpkgcache "srcpkgcache.bin"; | |
113 | pkgcache "pkgcache.bin"; | |
114 | }; | |
115 | ||
93bf083d | 116 | // Config files |
0a8e3465 | 117 | Etc "/etc/apt/" { |
93bf083d | 118 | sourcelist "sources.list"; |
0a8e3465 AL |
119 | main "apt.conf"; |
120 | }; | |
024835dc | 121 | |
93bf083d | 122 | // Locations of binaries |
024835dc | 123 | Bin { |
3d8fd174 | 124 | methods "/usr/lib/apt/methods/"; |
93bf083d | 125 | gzip "/bin/gzip"; |
30e1eab5 | 126 | dpkg "/usr/bin/dpkg"; |
7a1b1f8b AL |
127 | apt-get "/usr/bin/apt-get"; |
128 | apt-cache "/usr/bin/apt-get"; | |
024835dc | 129 | }; |
0a8e3465 AL |
130 | }; |
131 | ||
c3c459fc | 132 | // Things that effect the APT dselect method |
0a8e3465 | 133 | DSelect { |
dcc48266 | 134 | Clean "auto"; // always|auto|prompt|never |
7a1b1f8b AL |
135 | Options "-f"; |
136 | UpdateOptions ""; | |
c217f42a | 137 | PromptAfterUpdate "no"; |
0a8e3465 AL |
138 | } |
139 | ||
6dd55be7 AL |
140 | DPkg { |
141 | Options {"--force-downgrade";} | |
142 | Pre-Invoke {"mount -o remount,rw /usr";}; | |
143 | Post-Invoke {"mount -o remount,ro /usr";}; | |
87b11230 | 144 | Run-Directory "/"; |
6dd55be7 AL |
145 | } |
146 | ||
93bf083d AL |
147 | /* Options you can set to see some debugging text They corrispond to names |
148 | of classes in the source code */ | |
0a8e3465 | 149 | Debug { |
93bf083d | 150 | pkgProblemResolver "false"; |
0a8a80e5 | 151 | pkgAcquire "false"; |
93bf083d | 152 | pkgAcquire::Worker "false"; |
30e1eab5 | 153 | pkgDPkgPM "false"; |
93bf083d AL |
154 | |
155 | pkgInitialize "false"; // This one will dump the configuration space | |
c3c459fc | 156 | NoLocking "false"; |
0a8e3465 | 157 | } |