summaryrefslogtreecommitdiffstats
path: root/storage/formats/fs.py
diff options
context:
space:
mode:
authorDavid Lehman <dlehman@redhat.com>2009-04-20 17:59:36 -0500
committerDavid Lehman <dlehman@redhat.com>2009-04-21 10:14:24 -0500
commit1e9b5b1f962f46ef531ca5f89870928fd7592e7f (patch)
tree2c7140149aea0c4b818dd1455e8bdf4255553ce2 /storage/formats/fs.py
parent2b2be94b0ba5e88cf394e8e49002bbfaff30e9ed (diff)
downloadanaconda-1e9b5b1f962f46ef531ca5f89870928fd7592e7f.tar.gz
anaconda-1e9b5b1f962f46ef531ca5f89870928fd7592e7f.tar.xz
anaconda-1e9b5b1f962f46ef531ca5f89870928fd7592e7f.zip
Don't try to get size for nodev and bind filesystems.
Diffstat (limited to 'storage/formats/fs.py')
-rw-r--r--storage/formats/fs.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/storage/formats/fs.py b/storage/formats/fs.py
index 88148ea3b..358f5b368 100644
--- a/storage/formats/fs.py
+++ b/storage/formats/fs.py
@@ -1134,6 +1134,9 @@ class NoDevFS(FS):
def _setDevice(self, devspec):
self._device = devspec
+ def _getExistingSize(self):
+ pass
+
register_device_format(NoDevFS)
@@ -1171,6 +1174,9 @@ class BindFS(FS):
def mountable(self):
return True
+ def _getExistingSize(self):
+ pass
+
register_device_format(BindFS)