1
0
mirror of https://github.com/opinkerfi/nagios-plugins.git synced 2024-09-19 20:22:24 +02:00
nagios-plugins/check_nagios/check_nagios_needs_reload
2011-12-02 09:46:11 +00:00

21 lines
484 B
Python
Executable File

#!/usr/bin/python
# Checks if nagios service needs a reload
import sys
try:
from pynag.Parsers import config
c = config(cfg_file='/etc/nagios/nagios.cfg')
c.parse()
result = c.needs_reparse()
if result == True:
print "Warning - Nagios configuration has changed since last restart"
sys.exit(1)
else:
print "OK - Nagios service has been restarted since last config change"
sys.exit(0)
except Exception, e:
print "Unknown - Error running script: %s" % e
sys.exit(3)