mirror of
https://github.com/Icinga/icinga2.git
synced 2025-04-08 17:05:25 +02:00
13 lines
238 B
Bash
Executable File
13 lines
238 B
Bash
Executable File
#!/bin/sh
|
|
|
|
logfile_path="/var/log/icinga2/icinga2.log"
|
|
|
|
if sudo test -f $logfile_path;
|
|
then
|
|
echo "[OK] Icinga2 log file found ($logfile_path)"
|
|
exit 0
|
|
else
|
|
echo "[FAIL] Icinga2 log file not found ($logfile_path)"
|
|
exit 1
|
|
fi
|