blob: 8cd9c3b437fdcd252dcc429e6399ebabe6edf63d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
// $Id: apt.conf,v 1.3 1998/10/20 02:41:06 jgg Exp $
/* This file is an index of all APT configuration directives. It should
NOT actually be used as a real config file, though it is a completely
valid file.
*/
APT {
Architecture "i386";
Get {
Download-Only "false";
Simulate "false";
Assume-Yes "false";
Fix-Broken "false";
Show-Upgraded "false";
};
};
Dir
{
State "/var/state/apt/"
{
lists "lists/";
xstatus "xstatus";
userstatus "status.user";
status "/var/lib/dpkg/status";
};
Cache "/var/cache/apt/" {
archives "archives/";
srcpkgcache "srcpkgcache.bin";
pkgcache "pkgcache.bin";
};
Etc "/etc/apt/" {
sourcelist "sources.list";
main "apt.conf";
};
Bin {
methods "/home/jgg/work/apt/build/bin/methods/";
gzip "gzip";
};
};
DSelect {
}
Debug {
pkgProblemResolver "true";
pkgAcquire::Worker "true";
}
|