diff options
author | Matt Wilson <msw@redhat.com> | 2000-08-17 21:26:45 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2000-08-17 21:26:45 +0000 |
commit | 134a7bb1379cc9e52e0be08832f4f37114e4f895 (patch) | |
tree | 42ffbd9bb069f48a2285efefaf17fc359a478541 /comps.py | |
parent | eb0c38961043294fcf617c7675e6a23e170d49eb (diff) | |
download | anaconda-134a7bb1379cc9e52e0be08832f4f37114e4f895.tar.gz anaconda-134a7bb1379cc9e52e0be08832f4f37114e4f895.tar.xz anaconda-134a7bb1379cc9e52e0be08832f4f37114e4f895.zip |
exclude kernel-enterprise
Diffstat (limited to 'comps.py')
-rw-r--r-- | comps.py | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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) |