mirror of
https://github.com/Icinga/icinga2.git
synced 2025-11-02 12:45:11 +01:00
11 lines
156 B
Bash
Executable File
11 lines
156 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ -f /var/run/icinga2/icinga2.pid ];
|
|
then
|
|
echo "Icinga2 pidfile found"
|
|
exit 0
|
|
else
|
|
echo "Icinga2 pidfile not found"
|
|
exit 1
|
|
fi
|