summaryrefslogtreecommitdiff
path: root/doc/examples/apt.conf
blob: 0a6477c6e0c5fed3719ccbe48de4566726f1a9b7 (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
// $Id: apt.conf,v 1.1 1998/10/02 04:39:59 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";
  };
};

DSelect {

}

Debug {
  pkgProblemResolver "true";
}