diff options
author | Stephen Hemminger <shemminger@vyatta.com> | 2011-12-07 13:47:01 -0800 |
---|---|---|
committer | Stephen Hemminger <shemminger@vyatta.com> | 2011-12-07 13:47:01 -0800 |
commit | e34853262b6278f9f8500ff179341bebd4239fab (patch) | |
tree | 28ad32f82f5f62939e5fa532757079c53b3998c9 | |
parent | 3809d27ef7c8a21fab039fd17852a970e2aa3bed (diff) | |
parent | 2ab0998b540bdc57fb15717672fb468d990e9280 (diff) | |
download | vyatta-cfg-system-e34853262b6278f9f8500ff179341bebd4239fab.tar.gz vyatta-cfg-system-e34853262b6278f9f8500ff179341bebd4239fab.zip |
Merge branch 'oxnard' of fiji.vyatta.com:/git/vyatta-cfg-system into oxnard
-rw-r--r-- | debian/changelog | 7 | ||||
-rwxr-xr-x | scripts/install/install-image | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index 95ab609e..6ffd7647 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +vyatta-cfg-system (0.19.141) unstable; urgency=low + + * Bugfix 7497: Include auth credentials when fetching the signature + file + + -- Bob Gilligan <gilligan@vyatta.com> Tue, 06 Dec 2011 16:16:02 -0800 + vyatta-cfg-system (0.19.140) unstable; urgency=low * Fix up formating of Vyatta specific HTTP options. 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] " |