summaryrefslogtreecommitdiffstats
path: root/installmethod.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2005-04-26 21:39:09 +0000
committerJeremy Katz <katzj@redhat.com>2005-04-26 21:39:09 +0000
commita45d8e95bb23c4549935adf2885746f32abe4ba5 (patch)
treedc848d0c074c2cc13c34b895912c3a21294e7d56 /installmethod.py
parentd7ef40382dfd9c6dfcf6bf45aac9b721a935e0bf (diff)
downloadanaconda-a45d8e95bb23c4549935adf2885746f32abe4ba5.tar.gz
anaconda-a45d8e95bb23c4549935adf2885746f32abe4ba5.tar.xz
anaconda-a45d8e95bb23c4549935adf2885746f32abe4ba5.zip
2005-04-26 Jeremy Katz <katzj@redhat.com>
* image.py (CdromInstallMethod.getRPMFilename): Beep if we need to insert a new CD (#109264) * harddrive.py (HardDriveInstallMethod.__init__): Do method parsing here instead of in anaconda. Pass intf down. * image.py (ImageInstallMethod.__init__): Likewise. * image.py (CdromImageInstallMethod.__init__): Likewise. * image.py (NfsInstallMethod.__init__): Likewise. * image.py (NfsISOInstallMethod.__init__): Likewise. * installmethod.py (InstallMethod.__init__): Likewise. * urlinstall.py (UrlInstallMethod.__init__): Likewise. * anaconda: Make method __init__'s all basically act the same
Diffstat (limited to 'installmethod.py')
-rw-r--r--installmethod.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/installmethod.py b/installmethod.py
index 5b923e3d9..92e6e29f4 100644
--- a/installmethod.py
+++ b/installmethod.py
@@ -102,9 +102,9 @@ class InstallMethod:
def unlinkFilename(self, fullName):
pass
- def __init__(self, rootpath):
+ def __init__(self, method, rootpath, intf):
self.rootPath = rootpath
- pass
+ self.intf = intf
def getSourcePath(self):
pass