[yocto-patches] [layerindex-web][PATCH v3 2/4] connectivity_check.sh: Use yoctoproject.org for HTTPS check
Sandeep Gundlupet Raju <[email protected]>
| Newsgroups | org.yoctoproject.lists.yocto-patches |
|---|---|
| Message-ID | <[email protected]> |
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" if ! wget -q $HTTPS_TEST_URL ; then echo "ERROR: failed to fetch $HTTPS_TEST_URL" cleanup_tmp -- 2.43.0