X-Git-Url: https://git.saurik.com/apt.git/blobdiff_plain/c88edf1d276eb4e01b92835163bdd8574ded93db..565ded7b65240b25ad8551789ac388c8ce72b1f4:/doc/examples/apt.conf diff --git a/doc/examples/apt.conf b/doc/examples/apt.conf index 04d4fbc85..7201d1920 100644 --- a/doc/examples/apt.conf +++ b/doc/examples/apt.conf @@ -1,62 +1,32 @@ -// $Id: apt.conf,v 1.5 1998/10/24 04:58:10 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. +// $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 { - Architecture "i386"; - - Get { +APT +{ + // Options for apt-get + Get + { Download-Only "false"; - Simulate "false"; - Assume-Yes "false"; - Fix-Broken "false"; - Show-Upgraded "false"; }; - Ingore-Hold "false"; }; +// Options for the downloading routines Acquire { - Queue-Mode "access"; // host|access + Retries "0"; }; -Dir +// Things that effect the APT dselect method +DSelect { - - 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.test"; - main "apt.conf"; - }; - - Bin { - methods "/home/jgg/work/apt/build/bin/methods/"; - gzip "gzip"; - }; + Clean "auto"; // always|auto|prompt|never }; -DSelect { - -} - -Debug { - pkgProblemResolver "true"; - pkgAcquire "false"; - pkgAcquire::Worker "true"; +DPkg +{ + // Probably don't want to use force-downgrade.. + Options {"--force-overwrite";} }