summaryrefslogtreecommitdiffstats
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
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).
-rw-r--r--ChangeLog5
-rw-r--r--fsset.py3
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 7ba169846..70a7edb2d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-04-28 Chris Lumens <clumens@redhat.com>
+
+ * fsset.py (readFstab): Don't skip bind mounts with an fstype of none
+ on upgrades (#151458).
+
2005-04-28 Peter Jones <pjones@redhat.com>:
* mediacheck.h: add FRAGMENT_SUM_LENGTH here, fix parsepvd prototype.
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