diff options
author | Holger Levsen <holger@layer-acht.org> | 2012-11-09 15:35:59 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2012-11-09 15:35:59 +0100 |
commit | 5ef4b5c41f5b5343851795ff216c1dfbf468ee0d (patch) | |
tree | b9715c35e443314577804e9d62beee9dc7053187 /bin | |
parent | 5a8eee45a3f59264c6955bac2bded662592eb009 (diff) | |
download | jenkins.debian.net-5ef4b5c41f5b5343851795ff216c1dfbf468ee0d.tar.xz |
add 14 more webchecks
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/webcheck_url.sh | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/bin/webcheck_url.sh b/bin/webcheck_url.sh index 366f1890..2652f5b0 100755 --- a/bin/webcheck_url.sh +++ b/bin/webcheck_url.sh @@ -16,12 +16,8 @@ set -e export LANG=C export http_proxy="http://localhost:3128" -TMPFILE=$(mktemp -d) -cd $TMPFILE PARAMS="" if [ "$2" != "" ] ; then PARAMS=$(for i in $2 ; do echo -n "-y $i " ; done) fi webcheck $1 $PARAMS -cd .. -mv $TMPFILE $(basename $1) |