From ee00d454e791522383d06f2604252506433093ed Mon Sep 17 00:00:00 2001 From: James Davidson Date: Thu, 10 May 2012 13:31:23 -0700 Subject: Change default to No when not enough space to save config During an image add, the default used to be to not save the current configuration and continue with adding the image. Now the default is to not continue. Fixes bug 7964. --- scripts/install/install-image-existing | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'scripts/install/install-image-existing') diff --git a/scripts/install/install-image-existing b/scripts/install/install-image-existing index ea5455ea..54881043 100755 --- a/scripts/install/install-image-existing +++ b/scripts/install/install-image-existing @@ -207,8 +207,8 @@ if [ $space_avail -gt $space_needed_configdata ]; then done else echo 'There is not enough space to save the current configuration directory.' - echo -n 'Would you like to continue without saving it? (Yes/No) [Yes]: ' - resp=$(get_response "Yes" "Yes No Y N") + echo -n 'Would you like to continue without saving it? (Yes/No) [No]: ' + resp=$(get_response "No" "Yes No Y N") if [ "$resp" == 'yes' ] || [ "$resp" == 'y' ]; then echo "OK. Proceeding without saving current config directory." else -- cgit v1.2.3