]> git.saurik.com Git - apt.git/blob - doc/examples/apt.conf
Sync
[apt.git] / doc / examples / apt.conf
1 // $Id: apt.conf,v 1.3 1998/10/20 02:41:06 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
7 APT {
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
19 Dir
20 {
21
22 State "/var/state/apt/"
23 {
24 lists "lists/";
25 xstatus "xstatus";
26 userstatus "status.user";
27 status "/var/lib/dpkg/status";
28 };
29
30 Cache "/var/cache/apt/" {
31 archives "archives/";
32 srcpkgcache "srcpkgcache.bin";
33 pkgcache "pkgcache.bin";
34 };
35
36 Etc "/etc/apt/" {
37 sourcelist "sources.list";
38 main "apt.conf";
39 };
40
41 Bin {
42 methods "/home/jgg/work/apt/build/bin/methods/";
43 gzip "gzip";
44 };
45 };
46
47 DSelect {
48
49 }
50
51 Debug {
52 pkgProblemResolver "true";
53 pkgAcquire::Worker "true";
54 }