summaryrefslogtreecommitdiffstats
path: root/installmethod.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2003-05-20 15:26:00 +0000
committerJeremy Katz <katzj@redhat.com>2003-05-20 15:26:00 +0000
commit1f3bf130e3705ed4d77af08cf51c12128ab5424d (patch)
tree9f5d2f3b64e7aa17b261e911cb1fff0547451e7d /installmethod.py
parent445f36acfd30cd71b89e8ed7385b74cb9da0f2dc (diff)
downloadanaconda-1f3bf130e3705ed4d77af08cf51c12128ab5424d.tar.gz
anaconda-1f3bf130e3705ed4d77af08cf51c12128ab5424d.tar.xz
anaconda-1f3bf130e3705ed4d77af08cf51c12128ab5424d.zip
merge from taroon branch to HEAD. mostly the package stuff, but also
msw's ctrl-alt-del thing and some arch fixups
Diffstat (limited to 'installmethod.py')
-rw-r--r--installmethod.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/installmethod.py b/installmethod.py
index 28c2008fb..deb449813 100644
--- a/installmethod.py
+++ b/installmethod.py
@@ -13,7 +13,7 @@
import os
import string
-from comps import ComponentSet
+from hdrlist import groupSetFromCompsFile
from rhpl.log import log
@@ -59,7 +59,7 @@ class InstallMethod:
break
if path:
- return ComponentSet(path, hdlist)
+ return groupSetFromCompsFile(path, hdlist)
else:
return self.readCompsViaMethod(hdlist)
pass
@@ -88,7 +88,7 @@ class InstallMethod:
def systemUnmounted(self):
pass
- def systemMounted(self, fstab, mntPoint, selected):
+ def systemMounted(self, fstab, mntPoint):
pass
def filesDone(self):