diff options
author | Roy.Li <rongqing.li@windriver.com> | 2013-09-03 13:19:23 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-09-06 23:03:20 +0100 |
commit | e0d66651c591ca50e1f716eefaec163d60e10b0e (patch) | |
tree | 66af88dd74581639c0fd26bad84b686e2a20ad59 /meta/recipes-devtools/distcc/files | |
parent | eb34e8d8cee816dc64ad7ffc0eaa8cdc9a04d5eb (diff) | |
download | poky-e0d66651c591ca50e1f716eefaec163d60e10b0e.tar.gz |
distcc: add init.d/distcc status command for LSB compliance
(From OE-Core rev: ab9694411840a9a78e9b6bbd24ef497be9f042b9)
Signed-off-by: Roy.Li <rongqing.li@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/distcc/files')
-rwxr-xr-x | meta/recipes-devtools/distcc/files/distcc | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/meta/recipes-devtools/distcc/files/distcc b/meta/recipes-devtools/distcc/files/distcc index 513bc483ea..c7c414d829 100755 --- a/meta/recipes-devtools/distcc/files/distcc +++ b/meta/recipes-devtools/distcc/files/distcc | |||
@@ -35,6 +35,9 @@ test -x $DAEMON || exit 0 | |||
35 | 35 | ||
36 | set -e | 36 | set -e |
37 | 37 | ||
38 | # Source function library. | ||
39 | . /etc/init.d/functions | ||
40 | |||
38 | # construct access list | 41 | # construct access list |
39 | ALLOW="" | 42 | ALLOW="" |
40 | for net in $ALLOWEDNETS | 43 | for net in $ALLOWEDNETS |
@@ -94,9 +97,14 @@ case "$1" in | |||
94 | } | 97 | } |
95 | echo "." | 98 | echo "." |
96 | ;; | 99 | ;; |
100 | |||
101 | status) | ||
102 | status $DAEMON | ||
103 | exit $? | ||
104 | ;; | ||
97 | *) | 105 | *) |
98 | N=/etc/init.d/$NAME | 106 | N=/etc/init.d/$NAME |
99 | echo "Usage: $N {start|stop|restart|force-reload}" >&2 | 107 | echo "Usage: $N {start|stop|restart|force-reload|status}" >&2 |
100 | exit 1 | 108 | exit 1 |
101 | ;; | 109 | ;; |
102 | esac | 110 | esac |