apt.conf 496 B

123456789101112131415161718192021222324252627282930313233
  1. // $Id: apt.conf,v 1.43 1999/12/06 02:19:38 jgg Exp $
  2. /* This file is a sample configuration file with a few harmless sample
  3. options.
  4. */
  5. APT
  6. {
  7. // Options for apt-get
  8. Get
  9. {
  10. Download-Only "false";
  11. };
  12. };
  13. // Options for the downloading routines
  14. Acquire
  15. {
  16. Retries "0";
  17. };
  18. // Things that effect the APT dselect method
  19. DSelect
  20. {
  21. Clean "auto"; // always|auto|prompt|never
  22. };
  23. DPkg
  24. {
  25. // Probably don't want to use force-downgrade..
  26. Options {"--force-overwrite";}
  27. }