icinga2/test/jenkins/icinga2_state.test

11 lines
180 B
Plaintext
Raw Normal View History

2013-12-04 16:33:05 +01:00
#!/bin/sh
2014-02-14 16:05:58 +01:00
sudo service icinga2 status &> /dev/null
if [ $? -gt 0 ]; then
echo '[FAIL] icinga2 is not running'
exit 1
else
echo '[OK] icinga2 is running'
exit 0
fi