diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:51:01 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:51:01 +0000 |
commit | 0a8e3465cb644e380ab0fc6d66f6d1f17363b34e (patch) | |
tree | 7bc1f7814b793e616fb516d130e26bae04f848cf /doc/examples/apt.conf | |
parent | e1b74f61dfb6980d643cb7c666c761ff3bda2f1e (diff) |
Sync
Author: jgg
Date: 1998-10-02 04:39:42 GMT
Sync
Diffstat (limited to 'doc/examples/apt.conf')
-rw-r--r-- | doc/examples/apt.conf | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/doc/examples/apt.conf b/doc/examples/apt.conf new file mode 100644 index 000000000..0a6477c6e --- /dev/null +++ b/doc/examples/apt.conf @@ -0,0 +1,47 @@ +// $Id: apt.conf,v 1.1 1998/10/02 04:39:59 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"; + }; +}; + +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"; + }; +}; + +DSelect { + +} + +Debug { + pkgProblemResolver "true"; +} |