diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:54:49 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:54:49 +0000 |
commit | c98b1307f0e9c1712b8e36b825724966d9d40eec (patch) | |
tree | 43b74f157e7a3ccb1a525d5c5f6c3d4dca47bf16 /doc | |
parent | 4b1b89c5fe11c9977c55810cba26565e7ac66b36 (diff) |
Added clean install code
Author: jgg
Date: 1999-10-03 21:09:27 GMT
Added clean install code
Diffstat (limited to 'doc')
-rw-r--r-- | doc/apt.conf.5.yo | 6 | ||||
-rw-r--r-- | doc/examples/apt.conf | 8 |
2 files changed, 13 insertions, 1 deletions
diff --git a/doc/apt.conf.5.yo b/doc/apt.conf.5.yo index 9c4c0e4f1..4d3f3fd9f 100644 --- a/doc/apt.conf.5.yo +++ b/doc/apt.conf.5.yo @@ -55,6 +55,12 @@ dit(bf(Ignore-Hold)) Ignore Held packages; This global options causes the problem resolver to ignore held packages in its decision making. +dit(bf(Clean-Installed)) +Defaults to on. When turned on the autoclean feature will remove any pacakge +which can no longer be downloaded from the cache. If turned off then +packages that are locally installed are also excluded from cleaning - but +note that APT provides no direct means to reinstall them. + dit(bf(Immediate-Configure)) Disable Immedate Configuration; This dangerous option disables some of APT's ordering code to cause it to make fewer dpkg calls. Doing diff --git a/doc/examples/apt.conf b/doc/examples/apt.conf index dabdab35b..452e9c629 100644 --- a/doc/examples/apt.conf +++ b/doc/examples/apt.conf @@ -1,4 +1,4 @@ -// $Id: apt.conf,v 1.37 1999/08/28 03:22:45 jgg Exp $ +// $Id: apt.conf,v 1.38 1999/10/03 21:09:27 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. @@ -53,6 +53,7 @@ APT // Some general options Ignore-Hold "false"; + Clean-Installed "true"; Immediate-Configure "true"; // DO NOT turn this off, see the man page Force-LoopBreak "false"; // DO NOT turn this on, see the man page }; @@ -192,5 +193,10 @@ Debug pkgInitialize "false"; // This one will dump the configuration space NoLocking "false"; Acquire::Ftp "false"; // Show ftp command traffic + Acquire::Http "false"; // Show http command traffic aptcdrom "false"; // Show found package files } + +/* Whatever you do, do not use this configuration file!! Take out ONLY + the portions you need */ +ThisIsNotAValidConfigFile |