summaryrefslogtreecommitdiffstats
path: root/fsset.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2005-04-28 16:55:31 +0000
committerChris Lumens <clumens@redhat.com>2005-04-28 16:55:31 +0000
commit73e685a6af3811c94832a98760b43ff41aa637bf (patch)
tree775b971f447a2c745f1157b054937731748bfcc3 /fsset.py
parentd3e6804d85c09570934782587896a283ca9be53f (diff)
downloadanaconda-73e685a6af3811c94832a98760b43ff41aa637bf.tar.gz
anaconda-73e685a6af3811c94832a98760b43ff41aa637bf.tar.xz
anaconda-73e685a6af3811c94832a98760b43ff41aa637bf.zip
Don't skip bind mounts with an fstype of none on upgrades (#151458).
Diffstat (limited to 'fsset.py')
-rw-r--r--fsset.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/fsset.py b/fsset.py
index 5d11daee9..d942808c4 100644
--- a/fsset.py
+++ b/fsset.py
@@ -2296,7 +2296,8 @@ def readFstab (path, intf = None):
continue
fsystem = fileSystemTypeGet(fs)
break
- if fsystem is None:
+ # "none" is valid as an fs type for bind mounts (#151458)
+ if fsystem is None and (string.find(fields[3], "bind") == -1):
continue
label = None