Whitespace and minor style fixes

This commit is contained in:
Richard Hansen 2020-05-27 18:18:26 -04:00
parent f425cea2d1
commit cecbaba3e0

View file

@ -71,10 +71,8 @@ case "$1" in
if [ "$system" = "fedora" ] || [ "$system" = "redhat" ]; then
status $program
else
if test "$PID"
then
for p in $PID
do
if test "$PID"; then
for p in $PID; do
echo "$program (pid $p) is running"
done
else
@ -88,4 +86,3 @@ case "$1" in
esac
exit 0