NPM-KeepAliveD/Galera/chck_nginx.sh

11 lines
93 B
Bash
Raw Normal View History

2025-05-09 21:34:33 +02:00
#!/bin/sh
check=$(pidof nginx)
if [ -z $check ]; then
exit 1
else :
exit 0
fi