From a38edde8da2a77ca9612d840df33c6a9da21d212 Mon Sep 17 00:00:00 2001 From: "C. R. Oldham" Date: Thu, 17 Nov 2016 09:50:11 -0700 Subject: [PATCH] Add btrfs to list of FS that growroot will resize. --- base.one/etc/one-context.d/05-grow-rootfs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/base.one/etc/one-context.d/05-grow-rootfs b/base.one/etc/one-context.d/05-grow-rootfs index 2b5ba58..53db6e7 100755 --- a/base.one/etc/one-context.d/05-grow-rootfs +++ b/base.one/etc/one-context.d/05-grow-rootfs @@ -51,4 +51,7 @@ case "${FSTYPE}" in xfs) xfs_growfs / ;; + btrfs) + btrfs filesystem resize max / + ;; esac