summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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