diff options
author | Bob Gilligan <gilligan@vyatta.com> | 2008-10-03 10:30:05 -0700 |
---|---|---|
committer | Bob Gilligan <gilligan@vyatta.com> | 2008-10-03 10:30:05 -0700 |
commit | e9b009defbc8cb128096b8026e787d864ad52e97 (patch) | |
tree | 594c2b7b1557f55b4e8e33f6e5ae41c75900a796 /scripts/install-system | |
parent | 2e57bf9a4220a1c99cdb87136fad1b83d14cc454 (diff) | |
download | vyatta-cfg-quagga-e9b009defbc8cb128096b8026e787d864ad52e97.tar.gz vyatta-cfg-quagga-e9b009defbc8cb128096b8026e787d864ad52e97.zip |
Bugfix: 3743
Default answer question about diag partitionis "no".
Diffstat (limited to 'scripts/install-system')
-rw-r--r-- | scripts/install-system | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/install-system b/scripts/install-system index d06695e0..20b9f6a3 100644 --- a/scripts/install-system +++ b/scripts/install-system @@ -360,7 +360,7 @@ check_for_new_raid () { echo "Would you like me to create a $part_diag_size MB partition for diagnostics?" echo -n "(Yes/No) [No]: " - diag_response=$(get_response "Yes" "Yes No Y N") + diag_response=$(get_response "No" "Yes No Y N") if [ "$diag_response" == "yes" ] || [ "$diag_response" == "y" ]; then for drive in $drives do |