summaryrefslogtreecommitdiffstats
path: root/harddrive.py
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2002-07-24 18:36:19 +0000
committerMike Fulbright <msf@redhat.com>2002-07-24 18:36:19 +0000
commitd1f8f0ba159d087ab48509e95ef9ba5f9219168e (patch)
treeae1a7429a991a2eb111ac1b1c3607a40250e0c75 /harddrive.py
parent1654921e8254c5701da68804e0b95b57537d331c (diff)
downloadanaconda-d1f8f0ba159d087ab48509e95ef9ba5f9219168e.tar.gz
anaconda-d1f8f0ba159d087ab48509e95ef9ba5f9219168e.tar.xz
anaconda-d1f8f0ba159d087ab48509e95ef9ba5f9219168e.zip
fix for bugs #69306 and #67917 - we mount fs under /dev now so lvm tools can find them, and this magic code looked in /tmp
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 50d4cb408..5a2e30100 100644
--- a/harddrive.py
+++ b/harddrive.py
@@ -43,7 +43,7 @@ class OldHardDriveInstallMethod(InstallMethod):
for line in l:
s = string.split(line)
- if s[0] == "/tmp/" + self.device:
+ if s[0] == "/dev/" + self.device:
self.tree = s[1] + "/"
return
@@ -156,7 +156,7 @@ class HardDriveInstallMethod(InstallMethod):
for line in l:
s = string.split(line)
- if s[0] == "/tmp/" + self.device:
+ if s[0] == "/dev/" + self.device:
self.isoDir = s[1] + "/"
return