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