diff mbox series

[layerindex-web,2/4] connectivity_check.sh: Use yoctoproject.org for HTTPS check

Message ID 20260402195112.1369295-3-sandeep.gundlupet-raju@amd.com
State New
Headers show
Series Add app dir support | expand

Commit Message

Sandeep Gundlupet Raju April 2, 2026, 7:51 p.m. UTC
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 <sandeep.gundlupet-raju@amd.com>
---
 docker/connectivity_check.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/docker/connectivity_check.sh b/docker/connectivity_check.sh
index 59b26b8..89931b0 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