mirror of
https://github.com/Icinga/icinga2.git
synced 2025-05-17 21:10:17 +02:00
13 lines
258 B
Bash
Executable File
13 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
|