diff options
author | Paul Nasrat <pnasrat@redhat.com> | 2005-11-15 02:30:23 +0000 |
---|---|---|
committer | Paul Nasrat <pnasrat@redhat.com> | 2005-11-15 02:30:23 +0000 |
commit | 23b14c0567ef10d7540229854e4453c27a0adf91 (patch) | |
tree | b9b616fc909bf7895f4921d849a8bf1cd98268b2 /image.py | |
parent | 7285804934940a5a53356be539c9c9db80eccba9 (diff) | |
download | anaconda-23b14c0567ef10d7540229854e4453c27a0adf91.tar.gz anaconda-23b14c0567ef10d7540229854e4453c27a0adf91.tar.xz anaconda-23b14c0567ef10d7540229854e4453c27a0adf91.zip |
Use getMethodUri to configure backend
Diffstat (limited to 'image.py')
-rw-r--r-- | image.py | 6 |
1 files changed, 0 insertions, 6 deletions
@@ -11,7 +11,6 @@ # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. # -from hdrlist import groupSetFromCompsFile, HeaderListFromFile from installmethod import InstallMethod, FileCopyException import iutil import os @@ -363,9 +362,6 @@ class CdromInstallMethod(ImageInstallMethod): except SystemError: pass - def getMethodUri(self): - return "media://%s/" % (self.timestamp) - def __init__(self, method, rootPath, intf): """@param method cdrom://device:/path""" url = method[8:] @@ -490,8 +486,6 @@ def findIsoImages(path, messageWindow): class NfsIsoInstallMethod(NfsInstallMethod): - def getMethodUri(self): - pass def getFilename(self, filename, callback=None, destdir=None, retry=1): return self.mntPoint + "/" + filename |