diff options
author | Christian Poessinger <christian@poessinger.com> | 2018-10-15 07:51:13 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-15 07:51:13 +0200 |
commit | 04c0411deae74b0bbb4b852412c8668484f7a3b6 (patch) | |
tree | 9fcb45554c1cafe4d4683af0406fab2838a13ffb | |
parent | 0d9543fb8b2f2a2d90f4c809c53e60a2f333447c (diff) | |
parent | 1a05b1bfe0ccfd3f02a1cd4983b5f899364408c8 (diff) | |
download | vyatta-cfg-system-04c0411deae74b0bbb4b852412c8668484f7a3b6.tar.gz vyatta-cfg-system-04c0411deae74b0bbb4b852412c8668484f7a3b6.zip |
Merge pull request #78 from EwaldvanGeffen/patch-1
T885 Bug in add system image signature check confirmation
-rwxr-xr-x | scripts/install/install-image | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/install/install-image b/scripts/install/install-image index fd10d0c3..1b482a19 100755 --- a/scripts/install/install-image +++ b/scripts/install/install-image @@ -123,7 +123,7 @@ fetch_iso_by_url () if [ $? -ne 0 ]; then echo "Signature check FAILED." echo -n "Do you want to continue anyway? (yes/no) [no] " - response=$(get_response "Yes" "Yes No Y N") + response=$(get_response "No" "Yes No Y N") if [ "$response" == "no" ] || [ "$response" == "n" ]; then fail_exit 'OK. Installation will not be performed.' fi |