apt.conf 950 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. APT {
  7. Architecture "i386";
  8. Get {
  9. Download-Only "false";
  10. Simulate "false";
  11. Assume-Yes "false";
  12. Fix-Broken "false";
  13. Show-Upgraded "false";
  14. };
  15. };
  16. Dir
  17. {
  18. State "/var/state/apt/"
  19. {
  20. lists "lists/";
  21. xstatus "xstatus";
  22. userstatus "status.user";
  23. status "/var/lib/dpkg/status";
  24. };
  25. Cache "/var/cache/apt/" {
  26. archives "archives/";
  27. srcpkgcache "srcpkgcache.bin";
  28. pkgcache "pkgcache.bin";
  29. };
  30. Etc "/etc/apt/" {
  31. sourcelist "sources.list";
  32. main "apt.conf";
  33. };
  34. Bin {
  35. methods "/home/jgg/work/apt/build/bin/methods/";
  36. gzip "gzip";
  37. };
  38. };
  39. DSelect {
  40. }
  41. Debug {
  42. pkgProblemResolver "true";
  43. pkgAcquire::Worker "true";
  44. }