diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2009-09-23 17:11:41 +0200 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2009-09-23 17:11:41 +0200 |
commit | f7d6459db697c6dbba8e5d787a817e7721bfb577 (patch) | |
tree | df35974a4902758ad2e9e03720a463bc13bdefb4 /doc/examples/configure-index | |
parent | 73b1d4847befc0d3042b6689484e0f74667aba6e (diff) | |
parent | a874991b8549397fb26c47bbf229854556a3fb60 (diff) |
merged from david, many thanks
Diffstat (limited to 'doc/examples/configure-index')
-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 5dc7b5246..27118fb7e 100644 --- a/doc/examples/configure-index +++ b/doc/examples/configure-index @@ -246,6 +246,15 @@ Acquire { Options {"--ignore-time-conflict";} // not very useful on a normal system }; + + CompressionTypes + { + bz2 "bzip2"; + lzma "lzma"; + gz "gzip"; + + Order { "gz"; "lzma"; "bz2"; }; + }; }; // Directory layout @@ -310,18 +319,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"; |