summaryrefslogtreecommitdiffstats
path: root/comps.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2000-08-17 21:26:45 +0000
committerMatt Wilson <msw@redhat.com>2000-08-17 21:26:45 +0000
commit134a7bb1379cc9e52e0be08832f4f37114e4f895 (patch)
tree42ffbd9bb069f48a2285efefaf17fc359a478541 /comps.py
parenteb0c38961043294fcf617c7675e6a23e170d49eb (diff)
downloadanaconda-134a7bb1379cc9e52e0be08832f4f37114e4f895.tar.gz
anaconda-134a7bb1379cc9e52e0be08832f4f37114e4f895.tar.xz
anaconda-134a7bb1379cc9e52e0be08832f4f37114e4f895.zip
exclude kernel-enterprise
Diffstat (limited to 'comps.py')
-rw-r--r--comps.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/comps.py b/comps.py
index 523a8b748..0d7b7c3ed 100644
--- a/comps.py
+++ b/comps.py
@@ -448,8 +448,9 @@ class ComponentSet:
everything = Component(_("Everything"), 0, 0)
for package in packages.keys ():
if (packages[package][rpm.RPMTAG_NAME] != 'kernel' and
- packages[package][rpm.RPMTAG_NAME] != 'kernel-BOOT' and
- packages[package][rpm.RPMTAG_NAME] != 'kernel-smp' and
+ packages[package][rpm.RPMTAG_NAME] != 'kernel-BOOT' and
+ packages[package][rpm.RPMTAG_NAME] != 'kernel-enterprise' and
+ packages[package][rpm.RPMTAG_NAME] != 'kernel-smp' and
not XFreeServerPackages.has_key(packages[package][rpm.RPMTAG_NAME])):
everything.addPackage (packages[package])
self.comps.append (everything)