summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog3
-rw-r--r--yuminstall.py8
2 files changed, 7 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 40913f845..ffcd9502e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
2006-10-16 Jeremy Katz <katzj@redhat.com>
+ * yuminstall.py (YumBackend.doGroupSetup): Fix up for
+ virtualization being the group instead of xen
+
* zfcp.py (ZFCPDevice.offlineDevice): Fix a few stupid bugs
(ZFCP.startup): Move config reading to here so that we don't have
problems with bringing up devs more than once (#210094)
diff --git a/yuminstall.py b/yuminstall.py
index 9a86c7800..b7656431d 100644
--- a/yuminstall.py
+++ b/yuminstall.py
@@ -769,13 +769,13 @@ class YumBackend(AnacondaBackend):
self.ayum.doGroupSetup()
# FIXME: this is a bad hack to remove support for xen on xen (#179387)
if os.path.exists("/proc/xen"):
- if self.ayum.comps._groups.has_key("xen"):
- del self.ayum.comps._groups["xen"]
+ if self.ayum.comps._groups.has_key("virtualization"):
+ del self.ayum.comps._groups["virtualization"]
# FIXME: and another bad hack since our xen kernel is PAE
if rpmUtils.arch.getBaseArch() == "i386" and "pae" not in iutil.cpuFeatureFlags():
- if self.ayum.comps._groups.has_key("xen"):
- del self.ayum.comps._groups["xen"]
+ if self.ayum.comps._groups.has_key("virtualization"):
+ del self.ayum.comps._groups["virtualization"]
def doRepoSetup(self, anaconda, thisrepo = None, fatalerrors = True):