*** empty log message ***
This commit is contained in:
parent
0c96b9e85e
commit
dde3b865fb
1 changed files with 6 additions and 3 deletions
|
@ -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 ""
|
||||
|
|
Loading…
Reference in a new issue