--- storage/__init__.py | 18 +++++++++++++++++- 1 files changed, 17 insertions(+), 1 deletions(-) diff --git a/storage/__init__.py b/storage/__init__.py index 094c079..4da5459 100644 --- a/storage/__init__.py +++ b/storage/__init__.py @@ -1080,6 +1080,14 @@ def mountExistingSystem(anaconda, rootEnt, options=readOnly) fsset.parseFSTab(chroot=rootPath) + if len(fsset.malformedLines)>0: + messageWindow(_("Malformed /etc/fstab entries"), + _("The following entries in your " + "/etc/fstab were malformed. Should you want " + "to use or correct them, uncomment them " + "after reboot.\n" + "%s") % "\n".join(fsset.malformedLines)) + # check for dirty filesystems dirtyDevs = [] @@ -1279,6 +1287,7 @@ class FSSet(object): self._proc = None self._devshm = None self.preserveLines = [] # lines we just ignore and preserve + self.malformedLines = [] # lines we just ignore and preserve @property def sysfs(self): @@ -1484,7 +1493,9 @@ class FSSet(object): self.preserveLines.append(line) continue except Exception as e: - raise Exception("fstab entry %s is malformed: %s" % (devspec, e)) + # malformed line - write it out as a comment + self.malformedLines.append(line) + continue if not device: continue @@ -1896,4 +1907,9 @@ class FSSet(object): for line in self.preserveLines: fstab += line + # write any line that was present in the original fstab, but we + # were unable to parse it, write it as comment + for line in self.malformedLines: + fstab += "# " + line + return fstab -- 1.6.4 _______________________________________________ Anaconda-devel-list mailing list Anaconda-devel-list@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/anaconda-devel-list