icinga2/test/jenkins/pidfile.test

11 lines
168 B
Plaintext
Raw Normal View History

2013-12-05 09:46:51 +01:00
#!/bin/sh
if [ -f /var/run/icinga2/icinga2.pid ];
then
2014-02-14 16:05:58 +01:00
echo "[OK] Icinga2 pidfile found"
2013-12-05 09:46:51 +01:00
exit 0
else
2014-02-14 16:05:58 +01:00
echo "[FAIL] Icinga2 pidfile not found"
2013-12-05 09:46:51 +01:00
exit 1
fi