From: Ben Gras Date: Wed, 31 Aug 2005 16:48:46 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: v3.1.0~221 X-Git-Url: http://zhaoyanbai.com/repos/man.ddns-confgen.html?a=commitdiff_plain;h=dde3b865fb5fb60e82dd81058513f87a96eec59e;p=minix.git *** empty log message *** --- 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 ""