blob: 04d4fbc85758339da7758dfd30fac6e93de5faf1 (
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
55
56
57
58
59
60
61
62
|
// $Id: apt.conf,v 1.5 1998/10/24 04:58:10 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";
};
Ingore-Hold "false";
};
Acquire
{
Queue-Mode "access"; // host|access
};
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.test";
main "apt.conf";
};
Bin {
methods "/home/jgg/work/apt/build/bin/methods/";
gzip "gzip";
};
};
DSelect {
}
Debug {
pkgProblemResolver "true";
pkgAcquire "false";
pkgAcquire::Worker "true";
}
|