diff options
author | Alexandru Avadanii <Alexandru.Avadanii@enea.com> | 2017-01-21 18:34:06 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-01-21 18:34:06 +0000 |
commit | 4c74ad945b5b20be3014178070b495f10c16a74e (patch) | |
tree | f76b2e9892bd056b3da3a03a0ad27c5f8d2bb9ab /patches/fuel-plugin-opendaylight/0003-FIXME-ODL-wget-no-check-certificate-for-cache.patch | |
parent | 2662d9c5800b67d9375c22ccac439e3aeea3b4e5 (diff) | |
parent | e42a9b3011f96ad26f4a19db77ac44cad31a4290 (diff) |
Merge "Uplift Armband to Fuel Newton"
Diffstat (limited to 'patches/fuel-plugin-opendaylight/0003-FIXME-ODL-wget-no-check-certificate-for-cache.patch')
-rw-r--r-- | patches/fuel-plugin-opendaylight/0003-FIXME-ODL-wget-no-check-certificate-for-cache.patch | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/patches/fuel-plugin-opendaylight/0003-FIXME-ODL-wget-no-check-certificate-for-cache.patch b/patches/fuel-plugin-opendaylight/0003-FIXME-ODL-wget-no-check-certificate-for-cache.patch deleted file mode 100644 index 8b2d1a38..00000000 --- a/patches/fuel-plugin-opendaylight/0003-FIXME-ODL-wget-no-check-certificate-for-cache.patch +++ /dev/null @@ -1,42 +0,0 @@ -From: Alexandru Avadanii <Alexandru.Avadanii@enea.com> -Date: Tue, 12 Jul 2016 14:26:22 +0200 -Subject: [PATCH] FIXME: ODL wget: --no-check-certificate for cache. - -ODL tarball is normally fetched from nexus.opendaylight.org domain, -which has a very limited bandwidth, taking up to 10-15mins for our -build server to download the ODL archive at each ISO build. -This adds up to 15-25% of each ISO build time spent on downloading -ODL archive. -Therefore, we chose to set up a local HTTPS cache of nexus repos, -(just for the sake of not hardcoding the URL in our Makefile), -and just disable certificate check for wget from local URL. - -Allow using a HTTPS local cache, so we don't override the whole -URL of the ODL archive. Our local cache has HTTPS enabled, but the -certificate won't match the domain name. - -FIXME: This patch is only needed if you have a local cache of -nexus.opendaylight.org! - -Only use this option if you are otherwise convinced of the site's -authenticity, or if you really don't care about the validity of -its certificate. - -Signed-off-by: Alexandru Avadanii <Alexandru.Avadanii@enea.com> ---- - pre_build_hook | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/pre_build_hook b/pre_build_hook -index a6d55e9..21e7a99 100755 ---- a/pre_build_hook -+++ b/pre_build_hook -@@ -76,7 +76,7 @@ function cleanup { - } - - function download { -- wget "$1" -qO $2 -+ wget --no-check-certificate "$1" -qO $2 - } - - function unpack { |