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.
17 lines
336 B
17 lines
336 B
10 months ago
|
#!/bin/sh
|
||
|
# Author: Athmane Madjoudj <athmanem@gmail.com>
|
||
|
|
||
|
t_Log "Running $0 - Squid test."
|
||
|
|
||
|
if [ $SKIP_QA_HARNESS -eq 1 ]; then
|
||
|
URL="http://mirror.centos.org/"
|
||
|
CHECK_FOR="timestamp"
|
||
|
else
|
||
|
URL="http://repo.centos.qa/qa/"
|
||
|
CHECK_FOR="ks_cfg"
|
||
|
fi
|
||
|
|
||
|
squidclient -T 2 ${URL} | grep "${CHECK_FOR}" >/dev/null 2>&1
|
||
|
|
||
|
t_CheckExitStatus $?
|