ext2 does NOT support online resize, so we should attempt to umount the file system first. Signed-off-by: Lukas Czerner <lczerner@redhat.com> --- scripts/fsadm.sh | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/scripts/fsadm.sh b/scripts/fsadm.sh index e11f7f9..87c9bbc 100755 --- a/scripts/fsadm.sh +++ b/scripts/fsadm.sh @@ -411,6 +411,11 @@ resize_ext() { decode_size $1 $BLOCKSIZE FSFORCE=$FORCE + # ext2 does NOT support online resize + if [ "$FSTYPE" == "ext2" ]; then + EXTOFF=1 + fi + detect_mounted if [ "$NEWBLOCKCOUNT" -lt "$BLOCKCOUNT" -o "$EXTOFF" -eq 1 ]; then [ "$MOUNTED" ] && verbose "$RESIZE_EXT needs unmounted filesystem" && try_umount -- 1.7.4.4 _______________________________________________ linux-lvm mailing list linux-lvm@redhat.com https://www.redhat.com/mailman/listinfo/linux-lvm read the LVM HOW-TO at http://tldp.org/HOWTO/LVM-HOWTO/