summaryrefslogtreecommitdiffstats
path: root/fstab.py
diff options
context:
space:
mode:
authorBill Nottingham <notting@redhat.com>2001-04-25 17:03:47 +0000
committerBill Nottingham <notting@redhat.com>2001-04-25 17:03:47 +0000
commit0e35f574233c885f8a5cd3e7ce21e7cc9c508d2f (patch)
tree73e630c4eab83c54ee12e916bf0d5b9c0e99dd10 /fstab.py
parent0a3f164453a8a033d6f8d8b134464a06902c2109 (diff)
downloadanaconda-0e35f574233c885f8a5cd3e7ce21e7cc9c508d2f.tar.gz
anaconda-0e35f574233c885f8a5cd3e7ce21e7cc9c508d2f.tar.xz
anaconda-0e35f574233c885f8a5cd3e7ce21e7cc9c508d2f.zip
fix ia64 upgrades
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 a13ddf43b..3c704ebcf 100644
--- a/fstab.py
+++ b/fstab.py
@@ -1181,7 +1181,7 @@ def readFstab (path, fstab):
# all valid fstab entries have 6 fields
if len (fields) < 4 or len (fields) > 6: continue
- if fields[2] != "ext2" and fields[2] != "ext3" and fields[2] != "swap":
+ if fields[2] != "ext2" and fields[2] != "ext3" and fields[2] != "swap" and fields[2] != "vfat":
continue
if string.find(fields[3], "noauto") != -1: continue