2013-12-05 09:46:51 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
2014-02-19 15:33:10 +01:00
|
|
|
livestatus_path="/var/run/icinga2/cmd/livestatus"
|
|
|
|
|
|
|
|
if [ ! -e $livestatus_path ];
|
2013-12-05 09:46:51 +01:00
|
|
|
then
|
|
|
|
sudo icinga2-enable-feature livestatus 1> /dev/null
|
|
|
|
sudo service icinga2 restart 1> /dev/null
|
|
|
|
sleep 1
|
|
|
|
|
2014-02-19 15:33:10 +01:00
|
|
|
if [ ! -e $livestatus_path ];
|
2013-12-05 09:46:51 +01:00
|
|
|
then
|
2014-02-19 15:33:10 +01:00
|
|
|
echo "[FAIL] Icinga2 Livestatus socket not found ($livestatus_path)"
|
2013-12-05 09:46:51 +01:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2014-02-19 15:33:10 +01:00
|
|
|
echo "[OK] Icinga2 Livestatus socket found ($livestatus_path)"
|
2013-12-05 09:46:51 +01:00
|
|
|
exit 0
|