mirror of
https://github.com/Icinga/icinga2.git
synced 2026-03-10 02:01:38 -04:00
10 lines
189 B
Bash
Executable file
10 lines
189 B
Bash
Executable file
#!/bin/sh
|
|
|
|
sudo service postgresql status &> /dev/null
|
|
if [ $? -gt 0 ]; then
|
|
echo '[FAIL] postgresql is not running'
|
|
exit 1
|
|
else
|
|
echo '[OK] postgresql is running'
|
|
exit 0
|
|
fi
|