diff options
author | Mark McLoughlin <markmc@redhat.com> | 2008-08-07 17:44:02 +0100 |
---|---|---|
committer | Chris Lumens <clumens@redhat.com> | 2008-08-08 13:32:49 -0400 |
commit | 6650da96138d9a2135bc5713d84ac61d12f4c1f4 (patch) | |
tree | 475cb3d35e497c6a5b574eb75772a5274ebcf060 /yuminstall.py | |
parent | 64625b8ba5318b2cc2d8ce7fc273102b2ce23ffc (diff) | |
download | anaconda-6650da96138d9a2135bc5713d84ac61d12f4c1f4.tar.gz anaconda-6650da96138d9a2135bc5713d84ac61d12f4c1f4.tar.xz anaconda-6650da96138d9a2135bc5713d84ac61d12f4c1f4.zip |
yuminstall: don't ever stop people installing the virt group
This hack was important to stop people installing Xen dom0
on a machine where it wouldn't boot.
We don't have dom0 currently and now always makes sense to
allow people to install virt-manager and co. for containers,
qemu etc. etc.
If the hack ever comes back, it should just be to delete
the xen-hypervisor package (not in comps for F10) from the
list of options.
Signed-off-by: Mark McLoughlin <markmc@redhat.com>
Diffstat (limited to 'yuminstall.py')
-rw-r--r-- | yuminstall.py | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/yuminstall.py b/yuminstall.py index 6728b3f40..8a1e27c53 100644 --- a/yuminstall.py +++ b/yuminstall.py @@ -1084,15 +1084,6 @@ reposdir=/etc/anaconda.repos.d,/tmp/updates/anaconda.repos.d,/tmp/product/anacon for txmbr in self.ayum.tsInfo.getMembers(): txmbr.groups = yum.misc.unique(txmbr.groups) - # FIXME: hack, are we in xen (#179387) - # FIXME: hack, are we in vmware (#219696) - # FIXME: and another bad hack since our xen kernel is PAE - if iutil.inXen() or \ - iutil.inVmware() or \ - rpmUtils.arch.getBaseArch() == "i386" and "pae" not in iutil.cpuFeatureFlags(): - if self.ayum.comps._groups.has_key("virtualization"): - del self.ayum.comps._groups["virtualization"] - def doRepoSetup(self, anaconda, thisrepo = None, fatalerrors = True): # We want to call ayum.doRepoSetup one repo at a time so we have # some concept of which repo didn't set up correctly. |