home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2006 November (DVD) / PCWELT_11_2006.ISO / casper / filesystem.squashfs / usr / share / doc / apt / examples / apt.conf next >
Encoding:
Text File  |  2006-08-15  |  496 b   |  33 lines

  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.  
  6. APT 
  7. {
  8.   // Options for apt-get
  9.   Get 
  10.   {
  11.      Download-Only "false";
  12.   };
  13.   
  14. };
  15.  
  16. // Options for the downloading routines
  17. Acquire
  18. {
  19.   Retries "0";
  20. };
  21.  
  22. // Things that effect the APT dselect method
  23. DSelect 
  24. {
  25.   Clean "auto";   // always|auto|prompt|never
  26. };
  27.  
  28. DPkg 
  29. {
  30.   // Probably don't want to use force-downgrade..
  31.   Options {"--force-overwrite";}
  32. }
  33.