index : builder | |
Archlinux32 build system | gitolite user |
summaryrefslogtreecommitdiff |
-rwxr-xr-x | bin/sanity-check | 4 |
diff --git a/bin/sanity-check b/bin/sanity-check index 3813f22..5160142 100755 --- a/bin/sanity-check +++ b/bin/sanity-check @@ -158,9 +158,9 @@ while [ $# -gt 0 ]; do ' | \ sort -u ); do - if ! ping -c1 "${host}" >/dev/null 2>&1; then + if ! curl -s "http://$(dig +short "${host}" | tail -n1)" >/dev/null 2>&1; then if [ ${silence} -le 1 ]; then - printf '\nThe master mirror %s cannot be pinged.\n' \ + printf '\nThe master mirror %s is not reachable.\n' \ "${host}" | \ tee -a "${tmp_dir}/messages" >&2 fi |