cookbook-zabbix/files/default/traps/httpd.sh

13 lines
157 B
Bash
Raw Normal View History

2017-02-07 01:02:03 -05:00
#!/bin/bash
procs=$(/etc/init.d/httpd status >/dev/null 2>&1)
ret=$?
if [[ $ret -eq 0 ]]
then
echo "- apache.status 1"
else
echo "- apache.status 0"
fi