icinga2/test/jenkins/logfile.test

11 lines
176 B
Plaintext
Raw Normal View History

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