diff options
author | Mike Fulbright <msf@redhat.com> | 2002-07-24 18:36:19 +0000 |
---|---|---|
committer | Mike Fulbright <msf@redhat.com> | 2002-07-24 18:36:19 +0000 |
commit | d1f8f0ba159d087ab48509e95ef9ba5f9219168e (patch) | |
tree | ae1a7429a991a2eb111ac1b1c3607a40250e0c75 | |
parent | 1654921e8254c5701da68804e0b95b57537d331c (diff) | |
download | anaconda-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
-rw-r--r-- | harddrive.py | 4 |
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 |