repo.or.cz
/
openadk.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
squid: update to 6.13
[openadk.git]
/
package
/
netperf
/
files
/
netserver.init
blob
1988f6109c7a8d015bc8e219185fc819b25eacce
1
#!/bin/sh
2
#PKG netperf
3
#INIT 70
4
.
/
etc
/
rc.conf
5
6
case
$1
in
7
autostop
) ;;
8
autostart
)
9
test
x
"
${netserver:-NO}
"
=
x
"NO"
&&
exit
0
10
test
x
"
$netserver
"
=
x
"DAEMON"
&&
test -x
/
bin
/
mksh
&&
exec
mksh
-T-
$0
start
11
exec
sh
$0
start
12
;;
13
start
)
14
/
usr
/
sbin
/
netserver
15
;;
16
stop
)
17
kill
$
(
pgrep
-f
/
usr
/
sbin
/
netserver
)
18
;;
19
restart
)
20
sh
$0
stop
21
sh
$0
start
22
;;
23
*)
24
echo
"Usage:
$0
{start | stop | restart}"
25
exit
1
26
;;
27
esac
28
exit
$?