summaryrefslogtreecommitdiffstats
path: root/comps.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>1999-08-12 18:15:20 +0000
committerMatt Wilson <msw@redhat.com>1999-08-12 18:15:20 +0000
commit3ced20c04db38a7d97b97d213f307d64a0d81477 (patch)
tree33db50394aace98f1328805ce965c7878440818c /comps.py
parent3c6dff2d99fb96548f8b00b510e00948d4e9bc4a (diff)
downloadanaconda-3ced20c04db38a7d97b97d213f307d64a0d81477.tar.gz
anaconda-3ced20c04db38a7d97b97d213f307d64a0d81477.tar.xz
anaconda-3ced20c04db38a7d97b97d213f307d64a0d81477.zip
added lilo, 'everything' comp (generated), s/Ok/OK
Diffstat (limited to 'comps.py')
-rw-r--r--comps.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/comps.py b/comps.py
index f2743c7de..f87a704f1 100644
--- a/comps.py
+++ b/comps.py
@@ -147,6 +147,12 @@ class ComponentSet:
comp.addInclude(self.compsDict[l])
else:
comp.addPackage(packages[l])
+
+ everything = Component("Everything", 0, 0)
+ for package in packages.keys ():
+ everything.addPackage (packages[package])
+ self.comps.append (everything)
+
def __repr__(self):
s = ""