repo.or.cz
/
buildroot.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
rename to version specific patch
[buildroot.git]
/
package
/
avahi
/
S50avahi-daemon
blob
81ac51316e73d223325250bc50df5dfbf3f9473f
1
#!/bin/sh
2
#
3
# avahi-daemon init script
4
5
DAEMON
=/
usr
/
sbin
/
avahi-daemon
6
case
"
$1
"
in
7
start
)
8
$DAEMON
-c
||
$DAEMON
-D
9
;;
10
stop
)
11
$DAEMON
-c
&&
$DAEMON
-k
12
;;
13
reload
)
14
$DAEMON
-c
&&
$DAEMON
-r
15
;;
16
*)
17
echo
"Usage: S50avahi-daemon {start|stop|reload}"
>&
2
18
exit
1
19
;;
20
esac