diff --git a/src/etc/one-context.d/loc-05-grow-rootfs b/src/etc/one-context.d/loc-05-grow-rootfs index 7b5aff5..db3e04a 100755 --- a/src/etc/one-context.d/loc-05-grow-rootfs +++ b/src/etc/one-context.d/loc-05-grow-rootfs @@ -224,7 +224,8 @@ for _FS in ${GROW_FS} ; do LVM=$(lvdisplay "${DEVICE}" 2>/dev/null | wc -l) if [ "$LVM" -eq 0 ]; then - DEVICE=$(findmnt -ln -o SOURCE "$_FS") + # findmnt support --nofsroot since util-linux v2.19.1 + DEVICE=$(findmnt -ln -o SOURCE --nofsroot "$_FS") DISK=$(echo "$DEVICE" | sed 's/[0-9]*$//') PARTITION=$(echo "$DEVICE" | sed "s|^$DISK||") LVM="no"