Merge pull request #386 from marineam/fsck

disk_util: include fsck output during resize operation
This commit is contained in:
Michael Marineau 2015-03-25 14:31:29 -07:00
commit 798d9087fb

View File

@ -508,7 +508,7 @@ def ResizeExt(part, device):
part: dict defining the partition
device: name of the block device
"""
Sudo(['e2fsck', '-p', '-f', device], stdout_null=True)
Sudo(['e2fsck', '-p', '-f', device])
Sudo(['resize2fs', device, str(part['fs_blocks'])])