From dde3b865fb5fb60e82dd81058513f87a96eec59e Mon Sep 17 00:00:00 2001 From: Ben Gras Date: Wed, 31 Aug 2005 16:48:46 +0000 Subject: [PATCH] *** empty log message *** --- commands/scripts/setup.sh | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/commands/scripts/setup.sh b/commands/scripts/setup.sh index 6f5962ffb..60581b3e2 100755 --- a/commands/scripts/setup.sh +++ b/commands/scripts/setup.sh @@ -287,14 +287,17 @@ then # end Step 3 fi +defmb=200 + if [ ! "$auto" = r ] then homesize="" while [ -z "$homesize" ] do echo "" - echo -n "How big do you want your /home to be, in MB? " - read home - echo -n "$home MB Ok? [Y] " + echo -n "How big do you want your /home to be, in MB? [$defmb] " + read homesize + if [ "$homesize" = "" ] ; then homesize=$defmb; fi + echo -n "$homesize MB Ok? [Y] " read ok [ "$ok" = Y -o "$ok" = y -o "$ok" = "" ] || homesize="" echo "" -- 2.44.0