aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xrc.d6
1 files changed, 5 insertions, 1 deletions
diff --git a/rc.d b/rc.d
index 939538e..f5dd652 100755
--- a/rc.d
+++ b/rc.d
@@ -30,13 +30,16 @@ case $1 in
usage
;;
list)
+ shift
cd /etc/rc.d/
for d in *; do
have_daemon "$d" || continue
# print running / stopped satus
if ! ck_daemon "$d"; then
+ [[ "$1" == stopped ]] && continue
printf "${C_OTHER}[${C_DONE}STARTED${C_OTHER}]"
else
+ [[ "$1" == started ]] && continue
printf "${C_OTHER}[${C_FAIL}STOPPED${C_OTHER}]"
fi
# print auto / manual status
@@ -47,7 +50,7 @@ case $1 in
fi
printf " ${C_CLEAR}$d\n"
done
- ;;
+ ;;
*)
# check min args count
(( $# < 2 )) && usage
@@ -69,6 +72,7 @@ case $1 in
fi
(( ret += !! $? )) # clamp exit value to 0/1
done
+ ;;
esac
exit $ret