summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Lehman <dlehman@redhat.com>2009-05-04 18:22:06 -0500
committerDavid Lehman <dlehman@redhat.com>2009-05-04 19:32:43 -0500
commitc40bf44d3a552b2957bc6edebdf7c479e83120ba (patch)
treebe645172ee450642b2b0217ae984b8bf7c7e8d43
parente7b720a62478642dcbbd922dff07c1d1337d5bf6 (diff)
downloadanaconda-c40bf44d3a552b2957bc6edebdf7c479e83120ba.tar.gz
anaconda-c40bf44d3a552b2957bc6edebdf7c479e83120ba.tar.xz
anaconda-c40bf44d3a552b2957bc6edebdf7c479e83120ba.zip
Add an error signifying an unrecognized entry in /etc/fstab.
-rw-r--r--storage/errors.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/storage/errors.py b/storage/errors.py
index a23b572a3..9dd121c89 100644
--- a/storage/errors.py
+++ b/storage/errors.py
@@ -126,4 +126,7 @@ class PartitioningWarning(StorageError):
class UdevError(StorageError):
pass
+# fstab
+class UnrecognizedFSTabEntryError(StorageError):
+ pass