From c36db1614b60fc180d016fd3b7f64d9342a503a6 Mon Sep 17 00:00:00 2001 From: Christian Poessinger Date: Mon, 6 Sep 2021 12:31:21 +0200 Subject: install-image: remove whitespaces after . --- scripts/install/install-image | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/scripts/install/install-image b/scripts/install/install-image index 0e11dfdd..439c6ca4 100755 --- a/scripts/install/install-image +++ b/scripts/install/install-image @@ -164,21 +164,21 @@ fetch_iso_by_url () response=$(get_response "Yes" "Yes No Y N") if [ "$response" == "no" ] || [ "$response" == "n" ]; then rm -f $filename - fail_exit 'OK. Installation will not be performed.' + fail_exit 'OK. Installation will not be performed.' fi # In case signature file was partially downloaded... rm -f ${filename}.asc ${filename}.minisig fi if [ -e ${filename}.minisig ]; then - echo "Found it. Checking digital signature..." + echo "Found it. Checking digital signature..." minisign -V -q -p /usr/share/vyos/keys/vyos-release.minisign.pub -m ${filename} -x ${filename}.minisig if [ $? -ne 0 ]; then echo "Signature check FAILED." echo -n "Do you want to continue anyway? (yes/no) [no] " response=$(get_response "No" "Yes No Y N") if [ "$response" == "no" ] || [ "$response" == "n" ]; then - fail_exit 'OK. Installation will not be performed.' + fail_exit 'OK. Installation will not be performed.' fi echo "OK. Proceeding with installation anyway." @@ -188,7 +188,7 @@ fetch_iso_by_url () fi if [ -e ${filename}.asc ]; then - echo "Found it. Checking digital signature..." + echo "Found it. Checking digital signature..." gpg --keyring /etc/apt/trusted.gpg --verify ${filename}.asc if [ $? -ne 0 ]; then echo "Signature check FAILED." @@ -324,7 +324,7 @@ trap exit_handler EXIT if is_live_cd_boot; then cat <