summaryrefslogtreecommitdiffstats
path: root/installclasses
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2007-12-04 19:58:09 -0500
committerChris Lumens <clumens@redhat.com>2007-12-05 10:30:46 -0500
commitd1300e4c00a4e61097cdd7141112ec3a6894c494 (patch)
tree21cf7cb9120ef4936760d46d0c387296474b1d8a /installclasses
parent52a9331a20f82fd6f3aef18492fd2af61f830bdf (diff)
downloadanaconda-d1300e4c00a4e61097cdd7141112ec3a6894c494.tar.gz
anaconda-d1300e4c00a4e61097cdd7141112ec3a6894c494.tar.xz
anaconda-d1300e4c00a4e61097cdd7141112ec3a6894c494.zip
Begin removing references to anaconda.method and anaconda.methodstr.
Remove method references from the Anaconda object, along with various support functions that import methods and return instances of methods. This also removes method instances from the backend.
Diffstat (limited to 'installclasses')
-rw-r--r--installclasses/fedora.py6
-rw-r--r--installclasses/rhel.py3
2 files changed, 0 insertions, 9 deletions
diff --git a/installclasses/fedora.py b/installclasses/fedora.py
index 696a78c48..6f035716d 100644
--- a/installclasses/fedora.py
+++ b/installclasses/fedora.py
@@ -43,12 +43,6 @@ class InstallClass(BaseInstallClass):
BaseInstallClass.setSteps(self, anaconda);
anaconda.dispatch.skipStep("partition")
- def getMethod(self, methodstr):
- if methodstr.startswith("livecd://"):
- import livecd
- return livecd.LiveCDImageMethod
- return BaseInstallClass.getMethod(self, methodstr)
-
def getBackend(self, methodstr):
if methodstr.startswith("livecd://"):
import livecd
diff --git a/installclasses/rhel.py b/installclasses/rhel.py
index b6e8cda8f..387443ecc 100644
--- a/installclasses/rhel.py
+++ b/installclasses/rhel.py
@@ -158,9 +158,6 @@ class InstallClass(BaseInstallClass):
log.info("repopaths is %s" %(self.repopaths,))
- def getMethod(self, methodstr):
- return BaseInstallClass.getMethod(self, methodstr)
-
def getBackend(self, methodstr):
return yuminstall.YumBackend