summaryrefslogtreecommitdiffstats
path: root/storage/formats/fs.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2009-05-06 14:17:55 -0400
committerJeremy Katz <katzj@redhat.com>2009-05-06 15:45:03 -0400
commit7ea944274d1d46ad1c6e3057fbe28d205b1836f6 (patch)
treeb82d23fe935e1a2400af862a7fe78fb9afe7c5c5 /storage/formats/fs.py
parent9249e40f42ffbbdcf42cd1caad72e3d622c7a75b (diff)
downloadanaconda-7ea944274d1d46ad1c6e3057fbe28d205b1836f6.tar.gz
anaconda-7ea944274d1d46ad1c6e3057fbe28d205b1836f6.tar.xz
anaconda-7ea944274d1d46ad1c6e3057fbe28d205b1836f6.zip
Verify with fsck after resizing filesystems
Resizing can introduce errors too, so for paranoia, we should check afterwards
Diffstat (limited to 'storage/formats/fs.py')
-rw-r--r--storage/formats/fs.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/storage/formats/fs.py b/storage/formats/fs.py
index 59672d221..c4cb1ca92 100644
--- a/storage/formats/fs.py
+++ b/storage/formats/fs.py
@@ -394,6 +394,8 @@ class FS(DeviceFormat):
if rc:
raise FSResizeError("resize failed: %s" % rc, self.device)
+ self.doCheck(intf=intf)
+
# XXX must be a smarter way to do this
self._size = self.targetSize
self.notifyKernel()