icinga2/test/jenkins/logfile.test

11 lines
164 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
echo "Icinga2 log file found"
exit 0
else
echo "Icinga2 log file not found"
exit 1
fi