X-Git-Url: https://git.saurik.com/apt.git/blobdiff_plain/024835dca750b828b593e71fc80ffcb87edafb4f..245dde96193702f7f51389d3583dee547f8ba366:/doc/examples/apt.conf?ds=sidebyside diff --git a/doc/examples/apt.conf b/doc/examples/apt.conf index 8cd9c3b43..7201d1920 100644 --- a/doc/examples/apt.conf +++ b/doc/examples/apt.conf @@ -1,54 +1,32 @@ -// $Id: apt.conf,v 1.3 1998/10/20 02:41:06 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 { - Download-Only "false"; - Simulate "false"; - Assume-Yes "false"; - Fix-Broken "false"; - Show-Upgraded "false"; - }; -}; - -Dir +APT { - - State "/var/state/apt/" + // Options for apt-get + Get { - 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"; + Download-Only "false"; }; - Bin { - methods "/home/jgg/work/apt/build/bin/methods/"; - gzip "gzip"; - }; }; -DSelect { +// Options for the downloading routines +Acquire +{ + Retries "0"; +}; -} +// Things that effect the APT dselect method +DSelect +{ + Clean "auto"; // always|auto|prompt|never +}; -Debug { - pkgProblemResolver "true"; - pkgAcquire::Worker "true"; +DPkg +{ + // Probably don't want to use force-downgrade.. + Options {"--force-overwrite";} }