mirror of https://github.com/Icinga/icinga2.git
11 lines
164 B
Plaintext
11 lines
164 B
Plaintext
|
#!/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
|