* Set default Dpkg::MaxArgs to 1024, and Dpkg::MaxArgBytes to 32k. Needed
to work around ordering bugs when installing a large number of packages
/* This globs the operations and calls dpkg */
bool pkgDPkgPM::Go()
{
- unsigned int MaxArgs = _config->FindI("Dpkg::MaxArgs",350);
- unsigned int MaxArgBytes = _config->FindI("Dpkg::MaxArgBytes",8192);
+ unsigned int MaxArgs = _config->FindI("Dpkg::MaxArgs",8*1024);
+ unsigned int MaxArgBytes = _config->FindI("Dpkg::MaxArgBytes",32*1024);
if (RunScripts("DPkg::Pre-Invoke") == false)
return false;
- Updated Slovak from Peter Mann (Closes: #279481)
* APT::Get::APT::Get::No-List-Cleanup -> APT::Get::List-Cleanup in apt-get.cc
(Closes: #267266)
+ * Set default Dpkg::MaxArgs to 1024, and Dpkg::MaxArgBytes to 32k. Needed
+ to work around ordering bugs when installing a large number of packages
--