diff options
author | Bill Nottingham <notting@redhat.com> | 2001-04-25 17:03:47 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2001-04-25 17:03:47 +0000 |
commit | 0e35f574233c885f8a5cd3e7ce21e7cc9c508d2f (patch) | |
tree | 73e630c4eab83c54ee12e916bf0d5b9c0e99dd10 /fstab.py | |
parent | 0a3f164453a8a033d6f8d8b134464a06902c2109 (diff) | |
download | anaconda-0e35f574233c885f8a5cd3e7ce21e7cc9c508d2f.tar.gz anaconda-0e35f574233c885f8a5cd3e7ce21e7cc9c508d2f.tar.xz anaconda-0e35f574233c885f8a5cd3e7ce21e7cc9c508d2f.zip |
fix ia64 upgrades
Diffstat (limited to 'fstab.py')
-rw-r--r-- | fstab.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |