From 7b3ac94d62becc53dbde468b7ae9b726aca4a98e Mon Sep 17 00:00:00 2001 From: Iustin Pop Date: Thu, 16 Jul 2009 12:41:55 +0200 Subject: [PATCH] Change default stripe count to 1 In order not to change the default during a stable series, we modify configure.ac to default to one stripe, in effect keeping the status quo (well, minus the LVM Attach() changes). Signed-off-by: Iustin Pop Reviewed-by: Guido Trotter --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 76eeb36..d1c7878 100644 --- a/configure.ac +++ b/configure.ac @@ -123,10 +123,10 @@ AC_SUBST(SOCAT_PATH, $socat_path) AC_ARG_WITH([lvm-stripecount], [AS_HELP_STRING([--with-lvm-stripecount=NUM], [the number of stripes to use for LVM volumes] - [ (default is 3)] + [ (default is 1)] )], [lvm_stripecount="$withval"], - [lvm_stripecount="3"]) + [lvm_stripecount="1"]) AC_SUBST(LVM_STRIPECOUNT, $lvm_stripecount) # Check common programs -- 1.7.10.4