From fd34fdd86e3d3d551cf9be7a2bb72df6db0571b5 Mon Sep 17 00:00:00 2001 From: xfnw Date: Sun, 20 Feb 2022 19:30:35 -0500 Subject: [PATCH] recursively disable compression in /boot too --- example/configure.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/example/configure.sh b/example/configure.sh index af1e5b4..b067216 100755 --- a/example/configure.sh +++ b/example/configure.sh @@ -50,5 +50,6 @@ echo "$SSHPUBKEY" >> /root/.ssh/authorized_keys if [ "$ROOTFS" = 'btrfs' ]; then step 'Disabling compression on /boot' btrfs property set /boot compression "" + ls /boot | xargs -I{} btrfs property set /boot/{} compression "" fi