summaryrefslogtreecommitdiffstats
path: root/harddrive.py
diff options
context:
space:
mode:
authorErik Troan <ewt@redhat.com>2000-12-08 18:43:23 +0000
committerErik Troan <ewt@redhat.com>2000-12-08 18:43:23 +0000
commit791f649648560413e4a3f31cf6c50ee50e3a2c75 (patch)
tree9cc347e00a94fdea28b1b8619eedb70e3fcb1840 /harddrive.py
parentd3f64b8761ddc9cd9686c9a6f42947d4545a9396 (diff)
downloadanaconda-791f649648560413e4a3f31cf6c50ee50e3a2c75.tar.gz
anaconda-791f649648560413e4a3f31cf6c50ee50e3a2c75.tar.xz
anaconda-791f649648560413e4a3f31cf6c50ee50e3a2c75.zip
use separate timer for install which can be stopped and started
Diffstat (limited to 'harddrive.py')
-rw-r--r--harddrive.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/harddrive.py b/harddrive.py
index 1e1880060..a92112d34 100644
--- a/harddrive.py
+++ b/harddrive.py
@@ -47,7 +47,7 @@ class OldHardDriveInstallMethod(InstallMethod):
self.umountMedia()
return cs
- def getFilename(self, h):
+ def getFilename(self, h, timer):
return self.tree + self.path + "/RedHat/RPMS/" + self.fnames[h]
def readHeaders(self):
@@ -149,7 +149,7 @@ class HardDriveInstallMethod(InstallMethod):
self.umountMedia()
return cs
- def getFilename(self, h):
+ def getFilename(self, h, timer):
if self.mediaIsMounted != h[1000002]:
self.umountMedia()
self.mountMedia(h[1000002])