cookbook-zabbix/files/default/traps/tomcat.sh
2017-02-07 01:02:03 -05:00

13 lines
150 B
Bash
Executable file

#!/bin/bash
/etc/init.d/tomcat6 status >/dev/null 2>&1
ret=$?
if [[ $ret -eq 0 ]]
then
echo "- tomcat.status 1"
else
echo "- tomcat.status 0"
fi