releasing package apt version 1.0.5
[ntk/apt.git] / doc / examples / apt.conf
dissimilarity index 93%
index ab1bfbc..7201d19 100644 (file)
@@ -1,60 +1,32 @@
-// $Id: apt.conf,v 1.4 1998/10/22 04:56:50 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";
-  };
-};
-
-Acquire
-{
-  Queue-Mode "access";       // host|access
-};
-
-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 "false";
-  pkgAcquire::Worker "true";
-}
+// $Id: apt.conf,v 1.43 1999/12/06 02:19:38 jgg Exp $
+/* This file is a sample configuration file with a few harmless sample 
+   options.   
+*/
+
+APT 
+{
+  // Options for apt-get
+  Get 
+  {
+     Download-Only "false";
+  };
+  
+};
+
+// Options for the downloading routines
+Acquire
+{
+  Retries "0";
+};
+
+// Things that effect the APT dselect method
+DSelect 
+{
+  Clean "auto";   // always|auto|prompt|never
+};
+
+DPkg 
+{
+  // Probably don't want to use force-downgrade..
+  Options {"--force-overwrite";}
+}