diff -Nru debian-installer-utils-1.124ubuntu1/debian/changelog debian-installer-utils-1.124ubuntu2/debian/changelog --- debian-installer-utils-1.124ubuntu1/debian/changelog 2018-01-17 10:23:13.000000000 +0000 +++ debian-installer-utils-1.124ubuntu2/debian/changelog 2018-11-14 10:45:00.000000000 +0000 @@ -1,3 +1,11 @@ +debian-installer-utils (1.124ubuntu2) disco; urgency=low + + * fetch-url-methods/http: use '--no-check-certificate' for HTTP as well + (iff 'debian-installer/allow_unauthenticated_ssl' is specified anyway) + to support HTTP to HTTPS redirects. (LP: #1803385) + + -- Mauricio Faria de Oliveira Wed, 14 Nov 2018 08:45:00 -0200 + debian-installer-utils (1.124ubuntu1) bionic; urgency=low * Merge from Debian unstable. Remaining changes: diff -Nru debian-installer-utils-1.124ubuntu1/fetch-url-methods/http debian-installer-utils-1.124ubuntu2/fetch-url-methods/http --- debian-installer-utils-1.124ubuntu1/fetch-url-methods/http 2017-12-30 16:14:33.000000000 +0000 +++ debian-installer-utils-1.124ubuntu2/fetch-url-methods/http 2018-11-14 10:45:00.000000000 +0000 @@ -28,7 +28,7 @@ if wget --version 2>/dev/null | grep -q 'GNU Wget'; then options=--no-verbose - if [ "https" = "$proto" ] && \ + if [ "https" = "$proto" ] || [ "http" = "$proto" ] && \ db_get debian-installer/allow_unauthenticated_ssl && [ "$RET" = true ]; then options="$options --no-check-certificate" fi