| #!/bin/sh |
| |
| |
| |
| t_Log "Running $0 - wget can access http-host and download index.html." |
| FILE=/var/tmp/index.html |
| |
| |
| if [ $SKIP_QA_HARNESS -eq 1 ]; then |
| CHECK_FOR="CentOS" |
| URL="http://ci.dev.centos.org/cstatic/" |
| else |
| CHECK_FOR="CentOS" |
| URL="http://repo.centos.qa/srv/CentOS/" |
| fi |
| |
| t_Log "Querying ${URL}" |
| wget -q --output-document=${FILE} ${URL} |
| grep -q "${CHECK_FOR}" ${FILE} |
| ret_val=$? |
| |
| /bin/rm ${FILE} |
| t_CheckExitStatus $ret_val |