diff options
Diffstat (limited to 'scripts/install')
| -rwxr-xr-x | scripts/install/install-image | 27 | 
1 files changed, 25 insertions, 2 deletions
| diff --git a/scripts/install/install-image b/scripts/install/install-image index 57fd86eb..b402ff7f 100755 --- a/scripts/install/install-image +++ b/scripts/install/install-image @@ -182,7 +182,13 @@ fetch_iso_by_url ()      fi      echo "Checking for digital signature file..." -    ip vrf exec $VRF curl -L -H "User-Agent: VyOS/$vyos_version" $AUTH -f -o ${filename}.asc ${NEW_ISO}.asc +    # XXX: T2108: We will first download and try to verify the image using the +    # generated minisign signature. If this fails, we try to retrieve the GPG +    # signature file. +    ip vrf exec $VRF curl -L -H "User-Agent: VyOS/$vyos_version" $AUTH -f -o ${filename}.minisig ${NEW_ISO}.minisig +    if [ $? -ne 0 ]; then +        ip vrf exec $VRF curl -L -H "User-Agent: VyOS/$vyos_version" $AUTH -f -o ${filename}.asc ${NEW_ISO}.asc +    fi      if [ $? -ne 0 ]; then          echo "Unable to fetch digital signature file."          echo -n "Do you want to continue without signature check? (yes/no) [yes] " @@ -193,7 +199,24 @@ fetch_iso_by_url ()              fail_exit 'OK.  Installation will not be performed.'          fi          # In case signature file was partially downloaded... -        rm -f ${filename}.asc +        rm -f ${filename}.asc ${filename}.minisig +    fi + +    if [ -e ${filename}.minisig ]; then +        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.' +            fi + +            echo "OK. Proceeding with installation anyway." +        else +            echo "Digital signature is valid." +        fi      fi      if [ -e ${filename}.asc ]; then | 
