| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- // $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";
- }
|