mirror of https://github.com/Icinga/icinga2.git
18 lines
357 B
Plaintext
18 lines
357 B
Plaintext
|
#!/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
|