summaryrefslogtreecommitdiffstats
path: root/findpackageset.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2003-01-08 20:49:40 +0000
committerJeremy Katz <katzj@redhat.com>2003-01-08 20:49:40 +0000
commit4166df3c406efcab5a178e4fd11a7bcaf3272b34 (patch)
tree08d58cdd53a9ff69de9f8260ad68745157f34bb8 /findpackageset.py
parent49eba304200ec11183028f78af57032d545cdfcf (diff)
downloadanaconda-4166df3c406efcab5a178e4fd11a7bcaf3272b34.tar.gz
anaconda-4166df3c406efcab5a178e4fd11a7bcaf3272b34.tar.xz
anaconda-4166df3c406efcab5a178e4fd11a7bcaf3272b34.zip
use private so that we don't lose packages. looks to fix the "ghost" package
problems and doesn't seem to have any negative effects when booting into the installed system
Diffstat (limited to 'findpackageset.py')
-rw-r--r--findpackageset.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/findpackageset.py b/findpackageset.py
index 682f04a6a..f4e402e10 100644
--- a/findpackageset.py
+++ b/findpackageset.py
@@ -1,9 +1,8 @@
import rpm
-# set DB_PRIVATE to make rpm happy... do it in here since we include
-# this with all of the useful rpm bits
-#rpm.addMacro("__dbi_cdb", "create private")
+# set DB_PRIVATE to make rpm happy
+rpm.addMacro("__dbi_cdb", "create private mpool mp_mmapsize=16Mb mp_size=1Mb")
def dEBUG(str):