]> git.saurik.com Git - apt-legacy.git/blame - doc/examples/apt.conf
Ported to APT 0.7.25.3.
[apt-legacy.git] / doc / examples / apt.conf
CommitLineData
da6ee469
JF
1// $Id: apt.conf,v 1.43 1999/12/06 02:19:38 jgg Exp $
2/* This file is a sample configuration file with a few harmless sample
3 options.
4*/
5
6APT
7{
8 // Options for apt-get
9 Get
10 {
11 Download-Only "false";
12 };
13
14};
15
16// Options for the downloading routines
17Acquire
18{
19 Retries "0";
20};
21
22// Things that effect the APT dselect method
23DSelect
24{
25 Clean "auto"; // always|auto|prompt|never
26};
27
28DPkg
29{
30 // Probably don't want to use force-downgrade..
31 Options {"--force-overwrite";}
32}