I do not know how to file a bug report. The bug is the following
fsadm do not pass the new size parameter to xfs_growfs
Instead of:
if [ $NEWBLOCKCOUNT -gt $BLOCKCOUNT ]; then
verbose "Resizing Xfs mounted on \"$MOUNTPOINT\" to fill device \"$VOLUME\""
dry $RESIZE_XFS $MOUNTPOINT
elif
it should be
if [ $NEWBLOCKCOUNT -gt $BLOCKCOUNT ]; then
verbose "Resizing Xfs mounted on \"$MOUNTPOINT\" to fill device \"$VOLUME\""
dry $RESIZE_XFS -d $NEWBLOCKCOUNT $MOUNTPOINT
elif
Best wishes
Denes
_______________________________________________ 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/