You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
463 B

#!/bin/sh
# Author: Athmane Madjoudj <athmanem@gmail.com>
# Christoph Galuschka <christoph.galuschka@chello.at>
t_Log "Running $0 - curl can access http-host and retrieve index.html."
if [ $SKIP_QA_HARNESS -eq 1 ]; then
CHECK_FOR="The CentOS Project"
URL="http://www.centos.org/"
else
CHECK_FOR="Index of /srv"
URL="http://repo.centos.qa/srv/CentOS/"
fi
t_Log "Querying ${URL}"
curl --location -s ${URL} | grep -q "${CHECK_FOR}"
t_CheckExitStatus $?