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

13 lines
157 B
Bash
Executable File

#!/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