Sync
[ntk/apt.git] / doc / examples / apt.conf
CommitLineData
0a8a80e5 1// $Id: apt.conf,v 1.4 1998/10/22 04:56:50 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.
5*/
6
7APT {
8 Architecture "i386";
9
10 Get {
11 Download-Only "false";
12 Simulate "false";
13 Assume-Yes "false";
14 Fix-Broken "false";
15 Show-Upgraded "false";
16 };
17};
18
0a8a80e5
AL
19Acquire
20{
21 Queue-Mode "access"; // host|access
22};
23
0a8e3465
AL
24Dir
25{
024835dc 26
0a8e3465
AL
27 State "/var/state/apt/"
28 {
29 lists "lists/";
30 xstatus "xstatus";
31 userstatus "status.user";
32 status "/var/lib/dpkg/status";
33 };
34
35 Cache "/var/cache/apt/" {
36 archives "archives/";
37 srcpkgcache "srcpkgcache.bin";
38 pkgcache "pkgcache.bin";
39 };
40
41 Etc "/etc/apt/" {
42 sourcelist "sources.list";
43 main "apt.conf";
44 };
024835dc
AL
45
46 Bin {
47 methods "/home/jgg/work/apt/build/bin/methods/";
48 gzip "gzip";
49 };
0a8e3465
AL
50};
51
52DSelect {
53
54}
55
56Debug {
024835dc 57 pkgProblemResolver "true";
0a8a80e5 58 pkgAcquire "false";
024835dc 59 pkgAcquire::Worker "true";
0a8e3465 60}