projects
/
openwrt.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Add fakeidentd a lightweight identd daemon.
[openwrt.git]
/
package
/
fakeidentd
/
files
/
fakeidentd.init
1
#!/bin/sh
2
NAME
=
fakeidentd
3
case
"
$1
"
in
4
start
)
5
[
-e
$DEFAULT
] &&
$NAME $DEFAULT
6
;;
7
stop
)
8
killall
$NAME
9
;;
10
restart
)
11
killall
$NAME
12
$NAME
13
;;
14
*)
15
echo
"Usage:
$NAME
(start|stop|restart)"
>
2
&
16
exit
1
17
;;
18
esac
This page took
0.048294 seconds
and
5
git commands to generate.