summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2021-09-06 12:31:21 +0200
committerChristian Poessinger <christian@poessinger.com>2021-09-06 12:31:21 +0200
commitc36db1614b60fc180d016fd3b7f64d9342a503a6 (patch)
tree142765cbc7f5a6434d5ce0466d2c1d77896e19f5
parente289306ffd0625cfd01be0b308e05c7567102041 (diff)
downloadvyatta-cfg-system-c36db1614b60fc180d016fd3b7f64d9342a503a6.tar.gz
vyatta-cfg-system-c36db1614b60fc180d016fd3b7f64d9342a503a6.zip
install-image: remove whitespaces after .
-rwxr-xr-xscripts/install/install-image10
1 files 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 <<EOF
-Welcome to the VyOS install program. This script
+Welcome to the VyOS install program. This script
will walk you through the process of installing the
VyOS image to a local hard drive.
EOF