diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2009-09-23 17:26:43 +0200 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2009-09-23 17:26:43 +0200 |
commit | f98233c1b1e93ef1bb595bfc6e59c74d9e05eb6a (patch) | |
tree | 82d6aa3ff7c2c2e6d073ff39f09e52aa7407562d /doc/examples | |
parent | a69a3a044be84f72508fb468cdf13d9e5f724dd4 (diff) | |
parent | f7d6459db697c6dbba8e5d787a817e7721bfb577 (diff) |
merged from debian
Diffstat (limited to 'doc/examples')
-rw-r--r-- | doc/examples/configure-index | 24 |
1 files changed, 20 insertions, 4 deletions
diff --git a/doc/examples/configure-index b/doc/examples/configure-index index 175f0e480..b76819593 100644 --- a/doc/examples/configure-index +++ b/doc/examples/configure-index @@ -259,7 +259,16 @@ Acquire ProblemReporting "/usr/lib/apt/apt-report-mirror-failure"; // mirror failure reporting url ReportFailures "http://example.com/mirror-failure"; + }; + + CompressionTypes + { + bz2 "bzip2"; + lzma "lzma"; + gz "gzip"; }; + + Order { "gz"; "lzma"; "bz2"; }; // translations can be set here to "none", "environment" or "$locale" Translation "none"; @@ -328,18 +337,25 @@ DSelect CheckDir "no"; } -DPkg +DPkg { + // let apt aggressivly use dpkg triggers + NoTriggers "true"; + NoConfigure "true"; + ConfigurePending "true"; + // Probably don't want to use force-downgrade.. Options {"--force-overwrite";"--force-downgrade";} - + // Auto re-mounting of a readonly /usr Pre-Invoke {"mount -o remount,rw /usr";}; Post-Invoke {"mount -o remount,ro /usr";}; - + + Chroot-Directory "/"; + // Prevents daemons from getting cwd as something mountable (default) Run-Directory "/"; - + // Build options for apt-get source --compile Build-Options "-b -uc"; |