Message ID | 20250828104332.75862-1-mhalstead@linuxfoundation.org |
---|---|
State | New |
Headers | show |
Series | default-distrovars.inc: Switch to the canonical website domain | expand |
On Thu Aug 28, 2025 at 12:43 PM CEST, Michael Halstead via lists.openembedded.org wrote: > yoctoproject.org redirects to www.yoctoproject.org. Switching to the > true domain we avoid an unnessary redirect and avoid certifcate errors > on a default Debian 11 installation. > > Signed-off-by: Michael Halstead <mhalstead@linuxfoundation.org> > --- > meta/conf/distro/include/default-distrovars.inc | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/meta/conf/distro/include/default-distrovars.inc b/meta/conf/distro/include/default-distrovars.inc > index 9ea3b5414c..bbd936efa6 100644 > --- a/meta/conf/distro/include/default-distrovars.inc > +++ b/meta/conf/distro/include/default-distrovars.inc > @@ -63,4 +63,4 @@ KERNEL_IMAGETYPES ??= "${KERNEL_IMAGETYPE}" > # fetch from the network (and warn you if not). To disable the test set > # the variable to be empty. > # Git example url: git://git.yoctoproject.org/yocto-firewall-test;protocol=git;rev=master;branch=master > -CONNECTIVITY_CHECK_URIS ?= "https://yoctoproject.org/connectivity.html" > +CONNECTIVITY_CHECK_URIS ?= "https://www.yoctoproject.org/connectivity.html" Hi Michael, Thanks! Can I ask you to modify also the URLs in the test cases? We have two occurrences in meta/lib/oeqa/buildtools/cases/https.py. Best regards, Mathieu
Le jeu. 28 août 2025 à 13:20, Mathieu Dubois-Briand via lists.openembedded.org <mathieu.dubois-briand= bootlin.com@lists.openembedded.org> a écrit : > On Thu Aug 28, 2025 at 12:43 PM CEST, Michael Halstead via > lists.openembedded.org wrote: > > yoctoproject.org redirects to www.yoctoproject.org. Switching to the > > true domain we avoid an unnessary redirect and avoid certifcate errors > > on a default Debian 11 installation. > > > > Signed-off-by: Michael Halstead <mhalstead@linuxfoundation.org> > > --- > > meta/conf/distro/include/default-distrovars.inc | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > diff --git a/meta/conf/distro/include/default-distrovars.inc > b/meta/conf/distro/include/default-distrovars.inc > > index 9ea3b5414c..bbd936efa6 100644 > > --- a/meta/conf/distro/include/default-distrovars.inc > > +++ b/meta/conf/distro/include/default-distrovars.inc > > @@ -63,4 +63,4 @@ KERNEL_IMAGETYPES ??= "${KERNEL_IMAGETYPE}" > > # fetch from the network (and warn you if not). To disable the test set > > # the variable to be empty. > > # Git example url: git:// > git.yoctoproject.org/yocto-firewall-test;protocol=git;rev=master;branch=master > > -CONNECTIVITY_CHECK_URIS ?= "https://yoctoproject.org/connectivity.html" > > +CONNECTIVITY_CHECK_URIS ?= " > https://www.yoctoproject.org/connectivity.html" > > > Hi Michael, > > Thanks! > > Can I ask you to modify also the URLs in the test cases? > We have two occurrences in meta/lib/oeqa/buildtools/cases/https.py. > Related: https://lists.openembedded.org/g/openembedded-core/message/222559 Same patch which does seem to do what Mathieu is asking for. > > Best regards, > Mathieu > > > -- > Mathieu Dubois-Briand, Bootlin > Embedded Linux and Kernel engineering > https://bootlin.com > > > -=-=-=-=-=-=-=-=-=-=-=- > Links: You receive all messages sent to this group. > View/Reply Online (#222563): > https://lists.openembedded.org/g/openembedded-core/message/222563 > Mute This Topic: https://lists.openembedded.org/mt/114932649/4316185 > Group Owner: openembedded-core+owner@lists.openembedded.org > Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [ > yoann.congal@smile.fr] > -=-=-=-=-=-=-=-=-=-=-=- > >
It's probably best to take Deepak Rathore's patch instead. Avoiding redirects on a connectivity check is a good idea in general. I want to follow up and describe the specific issue that cropped up on the autobuilder for history's sake. Our redirection service switched from using ISRG Root X1 to ISRG Root X2 yesterday. This is less compatible but more efficient (https://letsencrypt.org/certificates/). ISRG Root X2 is not in ca-certificates (20230311) which is the current package on Debian 11 bookworm and is not likely to change. It also appears AlmaLinux 8 was unable to connect after the change. On Thu, Aug 28, 2025 at 1:22 PM Yoann Congal <yoann.congal@smile.fr> wrote: > > > > Le jeu. 28 août 2025 à 13:20, Mathieu Dubois-Briand via lists.openembedded.org <mathieu.dubois-briand=bootlin.com@lists.openembedded.org> a écrit : >> >> On Thu Aug 28, 2025 at 12:43 PM CEST, Michael Halstead via lists.openembedded.org wrote: >> > yoctoproject.org redirects to www.yoctoproject.org. Switching to the >> > true domain we avoid an unnessary redirect and avoid certifcate errors >> > on a default Debian 11 installation. >> > >> > Signed-off-by: Michael Halstead <mhalstead@linuxfoundation.org> >> > --- >> > meta/conf/distro/include/default-distrovars.inc | 2 +- >> > 1 file changed, 1 insertion(+), 1 deletion(-) >> > >> > diff --git a/meta/conf/distro/include/default-distrovars.inc b/meta/conf/distro/include/default-distrovars.inc >> > index 9ea3b5414c..bbd936efa6 100644 >> > --- a/meta/conf/distro/include/default-distrovars.inc >> > +++ b/meta/conf/distro/include/default-distrovars.inc >> > @@ -63,4 +63,4 @@ KERNEL_IMAGETYPES ??= "${KERNEL_IMAGETYPE}" >> > # fetch from the network (and warn you if not). To disable the test set >> > # the variable to be empty. >> > # Git example url: git://git.yoctoproject.org/yocto-firewall-test;protocol=git;rev=master;branch=master >> > -CONNECTIVITY_CHECK_URIS ?= "https://yoctoproject.org/connectivity.html" >> > +CONNECTIVITY_CHECK_URIS ?= "https://www.yoctoproject.org/connectivity.html" >> >> >> Hi Michael, >> >> Thanks! >> >> Can I ask you to modify also the URLs in the test cases? >> We have two occurrences in meta/lib/oeqa/buildtools/cases/https.py. > > > Related: https://lists.openembedded.org/g/openembedded-core/message/222559 > Same patch which does seem to do what Mathieu is asking for. > >> >> >> Best regards, >> Mathieu >> >> >> -- >> Mathieu Dubois-Briand, Bootlin >> Embedded Linux and Kernel engineering >> https://bootlin.com >> >> >> -=-=-=-=-=-=-=-=-=-=-=- >> Links: You receive all messages sent to this group. >> View/Reply Online (#222563): https://lists.openembedded.org/g/openembedded-core/message/222563 >> Mute This Topic: https://lists.openembedded.org/mt/114932649/4316185 >> Group Owner: openembedded-core+owner@lists.openembedded.org >> Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [yoann.congal@smile.fr] >> -=-=-=-=-=-=-=-=-=-=-=- >> > > > -- > Yoann Congal > Smile ECS -- Michael Halstead Linux Foundation / Yocto Project Systems Operations Engineer
diff --git a/meta/conf/distro/include/default-distrovars.inc b/meta/conf/distro/include/default-distrovars.inc index 9ea3b5414c..bbd936efa6 100644 --- a/meta/conf/distro/include/default-distrovars.inc +++ b/meta/conf/distro/include/default-distrovars.inc @@ -63,4 +63,4 @@ KERNEL_IMAGETYPES ??= "${KERNEL_IMAGETYPE}" # fetch from the network (and warn you if not). To disable the test set # the variable to be empty. # Git example url: git://git.yoctoproject.org/yocto-firewall-test;protocol=git;rev=master;branch=master -CONNECTIVITY_CHECK_URIS ?= "https://yoctoproject.org/connectivity.html" +CONNECTIVITY_CHECK_URIS ?= "https://www.yoctoproject.org/connectivity.html"
yoctoproject.org redirects to www.yoctoproject.org. Switching to the true domain we avoid an unnessary redirect and avoid certifcate errors on a default Debian 11 installation. Signed-off-by: Michael Halstead <mhalstead@linuxfoundation.org> --- meta/conf/distro/include/default-distrovars.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)