monurbox/monurbox-master/checks/web_site

11 lines
108 B
Plaintext
Raw Normal View History

2019-01-31 01:18:23 +00:00
#!/bin/bash
export SITE=$1
wget --quiet -O /dev/null $SITE
if [ $? -ne "0" ]
then
exit 1
else
exit 0
fi