mirror of
https://github.com/Icinga/icinga2.git
synced 2026-03-10 02:01:38 -04:00
12 lines
258 B
Bash
Executable file
12 lines
258 B
Bash
Executable file
#!/bin/sh
|
|
|
|
commandpipe_path="/var/run/icinga2/cmd/icinga2.cmd"
|
|
|
|
if [ -e $commandpipe_path ];
|
|
then
|
|
echo "[OK] Icinga2 commandpipe found ($commandpipe_path)"
|
|
exit 0
|
|
else
|
|
echo "[FAIL] Icinga2 commandpipe not found ($commandpipe_path)"
|
|
exit 1
|
|
fi
|