xinetd: add status of init.d command

(From OE-Core rev: 05c3bad6835d7e51b20e23ffd7708545b1ed81a1)

Signed-off-by: Li Wang <li.wang@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Li Wang 2013-11-26 18:18:26 +08:00 committed by Richard Purdie
parent b53a0117c8
commit c0d28b45d5
1 changed files with 8 additions and 1 deletions

View File

@ -2,6 +2,9 @@
#
# /etc/init.d/xinetd -- script to start and stop xinetd.
# Source function library.
. /etc/init.d/functions
if test -f /etc/default/xinetd; then
. /etc/default/xinetd
fi
@ -33,6 +36,10 @@ case "$1" in
start-stop-daemon --stop --signal 3 --quiet --exec /usr/sbin/xinetd
echo "."
;;
status)
status /usr/sbin/xinetd;
exit $?
;;
reload)
echo -n "Reloading internet superserver configuration: xinetd"
start-stop-daemon --stop --signal 1 --quiet --exec /usr/sbin/xinetd
@ -49,7 +56,7 @@ case "$1" in
$0 start
;;
*)
echo "Usage: /etc/init.d/xinetd {start|stop|reload|force-reload|restart}"
echo "Usage: /etc/init.d/xinetd {start|stop|status|reload|force-reload|restart}"
exit 1
;;
esac