Re: [yocto-patches] [layerindex-web][PATCH v3 2/4] connectivity_check.sh: Use yoctoproject.org for HTTPS check
Tim Orling <[email protected]>
| Newsgroups | org.yoctoproject.lists.yocto-patches |
|---|---|
| Message-ID | <CAOyo-84YrMoXjH7O6UExaby+Jx6h9ZK7Fnvg2xL_Td_iw-0i2A@mail.gmail.com> |
On Tue, Jun 9, 2026 at 9:40 AM Sandeep Gundlupet Raju < [email protected]> wrote: > Replace google.com with yoctoproject.org as the HTTPS test URL. > google.com may be blocked or considered unsafe on some Linux host > environments, while yoctoproject.org is a more appropriate and > reliable choice for a Yocto/OE layer index deployment. > > AI-Generated: GitHub Copilot (Claude Sonnet 4.6) > > Signed-off-by: Sandeep Gundlupet Raju <[email protected]> > --- > docker/connectivity_check.sh | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/docker/connectivity_check.sh b/docker/connectivity_check.sh > index 2e46ce4..630d0dc 100755 > --- a/docker/connectivity_check.sh > +++ b/docker/connectivity_check.sh > @@ -18,7 +18,7 @@ if ! wget -q $HTTP_TEST_URL ; then > exit 1 > fi > > -HTTPS_TEST_URL="https://google.com" > +HTTPS_TEST_URL="https://yoctoproject.org" > The yoctoproject.org site downloads a lot, but we have an existing connectivity check URL. openembedded-core/meta/conf/distro/include/default-distrovars.inc:CONNECTIVITY_CHECK_URIS ?= "https://www.yoctoproject.org/connectivity.html" I will just make the edit before pushing the commit. if ! wget -q $HTTPS_TEST_URL ; then > echo "ERROR: failed to fetch $HTTPS_TEST_URL" > cleanup_tmp > -- > 2.43.0 > >