summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMichael Vogt <michael.vogt@ubuntu.com>2007-03-14 11:38:41 +0100
committerMichael Vogt <michael.vogt@ubuntu.com>2007-03-14 11:38:41 +0100
commite6065cfcf0b5c6a57aa582cb3c2bd2b3fafe64b7 (patch)
treee90246321ade875980bee9e0ffdd33ed289da67a /doc
parent90ff41f8a6fdd304ac645f8279464462ca36fccd (diff)
* apt-pkg/depcache.cc:
- added "APT::Never-MarkAuto-Section" and consider dependencies of packages in this section manual * debian/apt.conf.ubuntu: - added APT::Never-MarkAuto-Section "metapackages";
Diffstat (limited to 'doc')
-rw-r--r--doc/examples/configure-index10
1 files changed, 8 insertions, 2 deletions
diff --git a/doc/examples/configure-index b/doc/examples/configure-index
index e5d1f2ab3..2bcafa39d 100644
--- a/doc/examples/configure-index
+++ b/doc/examples/configure-index
@@ -96,8 +96,14 @@ APT
// consider Recommends, Suggests as important dependencies that should
// be installed by default
- APT::Install-Recommends "false";
- APT::Install-Suggests "false";
+ Install-Recommends "false";
+ Install-Suggests "false";
+
+ // install recommends automatically for packages in this section
+ Install-Recommends-Section "metapackages";
+
+ // consider dependencies of packages in this section manual
+ Never-MarkAuto-Section "metapackages";
// Write progress messages on this fd (for stuff like base-config)
Status-Fd "-1";