diff options
author | Ewald van Geffen <ewald@abcdef.be> | 2018-10-15 01:44:19 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2018-10-15 07:52:37 +0200 |
commit | 6b97932840dc2e190ba8c904e1756f45bcad32d1 (patch) | |
tree | b759a5df0fd6cae8074c5cc93c1cf68f213208da | |
parent | 1730cfea362c3299fa78f924928678b5e30f4750 (diff) | |
download | vyatta-cfg-system-6b97932840dc2e190ba8c904e1756f45bcad32d1.tar.gz vyatta-cfg-system-6b97932840dc2e190ba8c904e1756f45bcad32d1.zip |
T885 Bug in add system image signature check confirmation
Documentation https://github.com/vyos/vyatta-cfg-system/blob/current/scripts/install/install-functions#L90
(cherry picked from commit 1a05b1bfe0ccfd3f02a1cd4983b5f899364408c8)
-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 |