dotfiles/vim/bundle/icinga2/test/jenkins/external_commandpipe.test
2016-09-13 22:42:14 +02:00

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