diff options
author | Bob Gilligan <gilligan@vyatta.com> | 2011-12-06 16:14:07 -0800 |
---|---|---|
committer | Bob Gilligan <gilligan@vyatta.com> | 2011-12-06 16:14:07 -0800 |
commit | 888e905ef90bbc7c481701c0d1570bf2efabb5e1 (patch) | |
tree | bb3137d6ef641654859a2218694a0281a013a0cd /scripts/install | |
parent | 98ea07e76bb82a3fe60b7f8d2e6d23ea0b2da539 (diff) | |
download | vyatta-cfg-system-888e905ef90bbc7c481701c0d1570bf2efabb5e1.tar.gz vyatta-cfg-system-888e905ef90bbc7c481701c0d1570bf2efabb5e1.zip |
Bugfix 7497: Include auth credentials when fetching the signature file
Diffstat (limited to 'scripts/install')
-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 b5061b26..95acd733 100755 --- a/scripts/install/install-image +++ b/scripts/install/install-image @@ -82,7 +82,7 @@ fetch_iso_by_url () echo "ISO download suceeded." echo "Checking for digital signature file..." - curl "$client_hdr" "$vers_hdr" -f -o ${filename}.asc ${NEW_ISO}.asc + curl "$client_hdr" "$vers_hdr" $auth -f -o ${filename}.asc ${NEW_ISO}.asc if [ $? -ne 0 ]; then echo "Unable to fetch digital signature file." echo -n "Do you want to continue without signature check? (yes/no) [yes] " |