From: Zac Medico Date: Thu, 20 Jun 2013 01:23:21 +0000 (-0700) Subject: emirrordist: wget --no-check-certificate X-Git-Tag: v2.2.0_alpha183~1 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=3ce6cfd1c41532afeed9d5f8bbbb0c5b652a9099;p=portage.git emirrordist: wget --no-check-certificate Use --no-check-certificate since Manifest digests should provide enough security, and certificates can be self-signed or whatnot. --- diff --git a/pym/portage/_emirrordist/FetchTask.py b/pym/portage/_emirrordist/FetchTask.py index c9e043356..46412e3f1 100644 --- a/pym/portage/_emirrordist/FetchTask.py +++ b/pym/portage/_emirrordist/FetchTask.py @@ -20,7 +20,9 @@ from _emerge.CompositeTask import CompositeTask default_hash_name = portage.const.MANIFEST2_REQUIRED_HASH -default_fetchcommand = "wget -c -v -t 1 --passive-ftp --timeout=60 -O \"${DISTDIR}/${FILE}\" \"${URI}\"" +# Use --no-check-certificate since Manifest digests should provide +# enough security, and certificates can be self-signed or whatnot. +default_fetchcommand = "wget -c -v -t 1 --passive-ftp --no-check-certificate --timeout=60 -O \"${DISTDIR}/${FILE}\" \"${URI}\"" class FetchTask(CompositeTask):