From 9ecfe247e7be30841a5bfb893cc4a9cf3c45be70 Mon Sep 17 00:00:00 2001 From: Michael Prokop Date: Fri, 3 Jun 2011 16:49:52 +0200 Subject: [PATCH] GRMLBASE.var: set maximum number of packages installed at a time to 3000. If we don't install all packages at once the packages are installed in batches of 99 packages at a time. Then packages which are requested for installation (via "foo" in a package config file) but fail to install can't be marked for uninstallation/ignoring (via "foo-") in classes (like IGNORE for buildd) because the "foo-" might be in a later batch whereas the failing installation runs in an earlier batch. Hopefully this doesn't require to much memory usage or breaks anything, but all the tests so far looked promising. --- etc/grml/fai/config/class/GRMLBASE.var | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/etc/grml/fai/config/class/GRMLBASE.var b/etc/grml/fai/config/class/GRMLBASE.var index e7ce51b..60b7b38 100644 --- a/etc/grml/fai/config/class/GRMLBASE.var +++ b/etc/grml/fai/config/class/GRMLBASE.var @@ -13,8 +13,10 @@ TIMEZONE=Europe/Vienna # root password for the new installed linux system; md5 and crypt are possible ROOTPW='x' -# MODULESLIST contains modules that will be loaded by the new system, -# not during installation these modules will be written to /etc/modules -# If you need a module during installation, add it to $kernelmodules -# in 20-hwdetect.source. But discover should do most of this job -# MODULESLIST="usbkbd ehci-hcd ohci-hcd uhci-hcd usbhid psmouse" +# Retrieve sources and store theme +# FAI_DEBSOURCESDIR=/grml/sources/ + +# Maximum number of packages installed at a time, +# needs to be quite high so we can override installation +# of specific packages through the IGNORE class. +MAXPACKAGES=3000 -- 2.1.4