Merge pull request #88 from stefanha/fix-paratition-typo

image-builder: fix "paratition" typo
This commit is contained in:
Graham Whaley 2018-04-26 11:15:36 +01:00 committed by GitHub
commit 35269d2db4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -194,9 +194,9 @@ create_rootfs_disk()
mkfs.ext4 -q -F -b "${BLOCK_SIZE}" "${DEVICE}p1"
OK "Image formated"
info "Mounting root paratition"
info "Mounting root partition"
mount "${DEVICE}p1" "${MOUNT_DIR}"
OK "root paratition mounted"
OK "root partition mounted"
RESERVED_BLOCKS_PERCENTAGE=3
info "Set filesystem reserved blocks percentage to ${RESERVED_BLOCKS_PERCENTAGE}%"
tune2fs -m "${RESERVED_BLOCKS_PERCENTAGE}" "${DEVICE}p1"