From 855c9b9d96cfca8d013174d5b2014f4cc9ce6c8e Mon Sep 17 00:00:00 2001 From: Guillaume Raffy Date: Wed, 24 Aug 2022 11:51:01 +0200 Subject: [PATCH] fixed silly error (min value was greater than max value) that caused the / partition to be 25Gb instead of 20Gb max --- preseed/debian/bullseye/preseed.computenode.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/preseed/debian/bullseye/preseed.computenode.cfg b/preseed/debian/bullseye/preseed.computenode.cfg index 2df6c69..fcc4c82 100644 --- a/preseed/debian/bullseye/preseed.computenode.cfg +++ b/preseed/debian/bullseye/preseed.computenode.cfg @@ -195,7 +195,7 @@ d-i partman-auto/expert_recipe string \ method{ lvm } \ vg_name{ sys } \ . \ - 25600 90000 20480 ext4 \ + 16384 90000 20480 ext4 \ $lvmok{ } \ in_vg{ sys } lv_name{ lv_root } \ method{ format } format{ } \