]> git.saurik.com Git - apt.git/commitdiff
* cmdline/apt-get.cc:
authorMichael Vogt <michael.vogt@ubuntu.com>
Wed, 9 Aug 2006 13:08:58 +0000 (15:08 +0200)
committerMichael Vogt <michael.vogt@ubuntu.com>
Wed, 9 Aug 2006 13:08:58 +0000 (15:08 +0200)
  - added "{no-}install-recommends" option to apt-get
* doc/examples/configure-index:
  - recommends/suggests option documented

cmdline/apt-get.cc
doc/examples/configure-index

index 6979fa8f2cd6fd991d20d5b8ffcdd49131615802..b419a05d95e0d57123464853978f8468d0de18e2 100644 (file)
@@ -2524,6 +2524,7 @@ int main(int argc,const char *argv[])
       {0,"only-source","APT::Get::Only-Source",0},
       {0,"arch-only","APT::Get::Arch-Only",0},
       {0,"allow-unauthenticated","APT::Get::AllowUnauthenticated",0},
+      {0,"install-recommends","APT::Install-Recommends",CommandLine::Boolean},
       {'c',"config-file",0,CommandLine::ConfigFile},
       {'o',"option",0,CommandLine::ArbItem},
       {0,0,0,0}};
index f8abd75ed7e9863600cac66e5490ed6e4cd6d794..c4329dfa0a4cc1a8a0f4bd2aee4493d3494bb200 100644 (file)
@@ -90,6 +90,10 @@ APT
   Cache-Limit "4194304";
   Default-Release "";
 
+  // consider Recommends, Suggests as important dependencies that should
+  // be installed by default
+  APT::Install-Recommends "false";
+  APT::Install-Suggests "false";
 
   // Write progress messages on this fd (for stuff like base-config)
   Status-Fd "-1";