summaryrefslogtreecommitdiffstats
path: root/fstab.py
diff options
context:
space:
mode:
authorbfox <bfox>2001-02-05 21:20:21 +0000
committerbfox <bfox>2001-02-05 21:20:21 +0000
commit2cfeba74977c17ebb37923424605f529d4fe2dd0 (patch)
tree6c913bdd610403bf45829ff1a74a099cd558249e /fstab.py
parentb0408fadbf89e24c87fe57aea1a370585d5927cf (diff)
downloadanaconda-2cfeba74977c17ebb37923424605f529d4fe2dd0.tar.gz
anaconda-2cfeba74977c17ebb37923424605f529d4fe2dd0.tar.xz
anaconda-2cfeba74977c17ebb37923424605f529d4fe2dd0.zip
Added another error check for the partitions. I think bug #16686 is resolved now.
Diffstat (limited to 'fstab.py')
-rw-r--r--fstab.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/fstab.py b/fstab.py
index 823fb3fa1..cc3e0c589 100644
--- a/fstab.py
+++ b/fstab.py
@@ -52,7 +52,7 @@ class Fstab:
(drives, raid) = self.partitionList()
for (drive, part, type, start, cyl, size, preexisting) in drives:
- if preexisting:
+ if preexisting and isValidExt2(drive):
alreadyExists[part] = 1
badList = []