11 lines
93 B
Bash
11 lines
93 B
Bash
#!/bin/sh
|
|
|
|
check=$(pidof nginx)
|
|
|
|
if [ -z $check ]; then
|
|
exit 1
|
|
|
|
else :
|
|
exit 0
|
|
|
|
fi |