summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--harddrive.py4
-rw-r--r--image.py2
-rw-r--r--urlinstall.py2
3 files changed, 4 insertions, 4 deletions
diff --git a/harddrive.py b/harddrive.py
index 326a4fbae..7e072c9ae 100644
--- a/harddrive.py
+++ b/harddrive.py
@@ -55,7 +55,7 @@ class OldHardDriveInstallMethod(InstallMethod):
def readCompsViaMethod(self, hdlist):
self.mountMedia()
cs = ComponentSet(self.tree + self.path +
- '/RedHat/base/comps', hdlist)
+ '/RedHat/base/comps.xml', hdlist)
self.umountMedia()
return cs
@@ -161,7 +161,7 @@ class HardDriveInstallMethod(InstallMethod):
def readCompsViaMethod(self, hdlist):
self.mountMedia(1)
- cs = ComponentSet(self.tree + '/RedHat/base/comps', hdlist)
+ cs = ComponentSet(self.tree + '/RedHat/base/comps.xml', hdlist)
self.umountMedia()
return cs
diff --git a/image.py b/image.py
index a5dd85bf2..206c52e1d 100644
--- a/image.py
+++ b/image.py
@@ -27,7 +27,7 @@ from rhpl.translate import _
class ImageInstallMethod(InstallMethod):
def readCompsViaMethod(self, hdlist):
- return ComponentSet(self.tree + '/RedHat/base/comps', hdlist)
+ return ComponentSet(self.tree + '/RedHat/base/comps.xml', hdlist)
def getFilename(self, h, timer):
return self.tree + "/RedHat/RPMS/" + h[1000000]
diff --git a/urlinstall.py b/urlinstall.py
index 5558037da..fd1d3cce9 100644
--- a/urlinstall.py
+++ b/urlinstall.py
@@ -37,7 +37,7 @@ DISCNUM = 1000002
class UrlInstallMethod(InstallMethod):
def readCompsViaMethod(self, hdlist):
- return ComponentSet(self.baseUrl + '/RedHat/base/comps', hdlist)
+ return ComponentSet(self.baseUrl + '/RedHat/base/comps.xml', hdlist)
def getFilename(self, h, timer):
tmppath = self.getTempPath()