mirror of
https://github.com/Icinga/icinga2.git
synced 2026-04-26 08:38:05 -04:00
12 lines
230 B
Bash
Executable file
12 lines
230 B
Bash
Executable file
#!/bin/sh
|
|
|
|
pidfile_path="/var/run/icinga2/icinga2.pid"
|
|
|
|
if [ -f $pidfile_path ];
|
|
then
|
|
echo "[OK] Icinga2 pidfile found ($pidfile_path)"
|
|
exit 0
|
|
else
|
|
echo "[FAIL] Icinga2 pidfile not found ($pidfile_path)"
|
|
exit 1
|
|
fi
|