icinga2/test/jenkins/livestatus_socket.test

18 lines
357 B
Plaintext
Raw Normal View History

2013-12-05 09:46:51 +01:00
#!/bin/sh
if [ ! -e /var/run/icinga2/cmd/livestatus ];
then
sudo icinga2-enable-feature livestatus 1> /dev/null
sudo service icinga2 restart 1> /dev/null
sleep 1
if [ ! -e /var/run/icinga2/cmd/livestatus ];
then
echo "Icinga2 Livestatus socket not found"
exit 1
fi
fi
echo "Icinga2 Livestatus socket found"
exit 0