10 lines
121 B
Bash
10 lines
121 B
Bash
#!/bin/sh
|
|
|
|
STATUS=$(ps ax | grep -v grep | grep pihole-FTL)
|
|
|
|
if [ "$STATUS" != "" ]
|
|
then
|
|
exit 0
|
|
else
|
|
exit 1
|
|
fi
|