#!/bin/bash
if [ $# -eq 0 ]
then
echo "No arguments supplied"
fi
if [ $# -eq 1 ]
then
output=`curl -x 10.11.10.10:3128 -L $1 -m 10 -o /dev/null || echo "Website_down"`
if [ "$output" == "Website_down" ] ; then
echo "Website is down CRITICAL "
exit 2
else
echo "Website_up $1 OK"
exit 0
fi
fi
if [ $# -eq 0 ]
then
echo "No arguments supplied"
fi
if [ $# -eq 1 ]
then
output=`curl -x 10.11.10.10:3128 -L $1 -m 10 -o /dev/null || echo "Website_down"`
if [ "$output" == "Website_down" ] ; then
echo "Website is down CRITICAL "
exit 2
else
echo "Website_up $1 OK"
exit 0
fi
fi