summaryrefslogtreecommitdiffstats
path: root/harddrive.py
diff options
context:
space:
mode:
authorErik Troan <ewt@redhat.com>2000-02-24 17:32:42 +0000
committerErik Troan <ewt@redhat.com>2000-02-24 17:32:42 +0000
commita94a31f6b033cd5512f4b8b81baff7d8d32bbfb9 (patch)
tree9cf8853add017dbc05efc77d899d4c2cae517ffa /harddrive.py
parent1103b64ecb52d1abcf067fceebc70745edf71852 (diff)
downloadanaconda-a94a31f6b033cd5512f4b8b81baff7d8d32bbfb9.tar.gz
anaconda-a94a31f6b033cd5512f4b8b81baff7d8d32bbfb9.tar.xz
anaconda-a94a31f6b033cd5512f4b8b81baff7d8d32bbfb9.zip
we're handling mount non-ext2 partitions properly
Diffstat (limited to 'harddrive.py')
-rw-r--r--harddrive.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/harddrive.py b/harddrive.py
index a213e2be5..64435a911 100644
--- a/harddrive.py
+++ b/harddrive.py
@@ -46,7 +46,7 @@ class InstallMethod:
def targetFstab(self, fstab):
self.isMounted = 0
for (mntpoint, device, fsystem, reformat, size) in fstab.mountList():
- if (device == self.device):
+ if (device == self.device and fsystem == "ext2"):
self.isMounted = 1
self.tree = "/mnt/sysimage" + mntpoint + "/" + self.path
self.needsUnmount = 0