14 lines
295 B
Bash
Executable file
14 lines
295 B
Bash
Executable file
#!/bin/bash
|
|
|
|
while true
|
|
do
|
|
exec=$(/usr/lib/nagios/plugins/check_http -H localhost -S -u https://localhost/idp/metadata/sp)
|
|
exec_result=$?
|
|
if [[ $exec_result -ne 0 ]]; then
|
|
echo "Service is not working!"
|
|
else
|
|
echo "$exec: Service is working!"
|
|
exit 0
|
|
fi
|
|
sleep 1
|
|
done
|