[FREEBSD] Added url-check.csh script

This commit is contained in:
Simon Cornet 2020-05-23 18:12:16 +02:00
parent 57a760b47c
commit 5d2d49fa04

10
FreeBSD/url-check.csh Normal file
View File

@ -0,0 +1,10 @@
#!/bin/csh -f
set URL=$1
set HS=$2
set STATUS=`curl -L -o /dev/null -s -w "%{http_code}\n" -m 1 $URL`
if ($STATUS == 200) then
/usr/local/bin/curl -fsS --retry 3 $HS > /dev/null
else
exit 1
endif