From 0a7ae8bc50208a7409198a8e92c4ce4afb2b5ed3 Mon Sep 17 00:00:00 2001 From: Bruce Ashfield Date: Tue, 2 Nov 2021 09:24:33 -0400 Subject: global: convert github SRC_URIs to use https protocol github is removing git:// access, and fetches will start experiencing interruptions in service, and eventually will fail completely. bitbake will also begin to warn on github src_uri's that don't use https. So we convert the meta-virt instances to use protocol=https (done using the oe-core contrib conversion script) Signed-off-by: Bruce Ashfield --- recipes-networking/cni/cni_git.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'recipes-networking/cni') diff --git a/recipes-networking/cni/cni_git.bb b/recipes-networking/cni/cni_git.bb index d211de82..3503816c 100644 --- a/recipes-networking/cni/cni_git.bb +++ b/recipes-networking/cni/cni_git.bb @@ -14,8 +14,8 @@ SRCREV_cni = "b5ab16f010e822936eb974690ecec38ba69afc01" SRCREV_plugins = "78702e9d8a2cdb6931fab433f1d1e6789162954f" SRCREV_FORMAT = "cni_plugins" SRC_URI = "\ - git://github.com/containernetworking/cni.git;nobranch=1;name=cni \ - git://github.com/containernetworking/plugins.git;nobranch=1;destsuffix=${S}/src/github.com/containernetworking/plugins;name=plugins \ + git://github.com/containernetworking/cni.git;nobranch=1;name=cni;protocol=https \ + git://github.com/containernetworking/plugins.git;nobranch=1;destsuffix=${S}/src/github.com/containernetworking/plugins;name=plugins;protocol=https \ " RPROVIDES:${PN} += "kubernetes-cni" -- cgit v1.2.3-54-g00ecf