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
imgtec-ci20: genimage config/ u-boot env
[openadk.git]
/
package
/
totd
/
files
/
totd.init
blob
cd3c5fc837820355e2bdbf0dfc091aefbdec4f03
1
#!/bin/sh
2
#PKG totd
3
#INIT 60
4
.
/
etc
/
rc.conf
5
6
case
$1
in
7
autostop
) ;;
8
autostart
)
9
test
x
"
${totd:-NO}
"
=
x
"NO"
&&
exit
0
10
test
x
"
$totd
"
=
x
"DAEMON"
&&
test -x
/
bin
/
mksh
&&
exec
mksh
-T-
$0
start
11
exec
sh
$0
start
12
;;
13
start
)
14
totd
$totd_flags
-c
/
etc
/
totd.conf
15
;;
16
stop
)
17
pkill totd
18
;;
19
restart
)
20
sh
$0
stop
21
sh
$0
start
22
;;
23
*)
24
echo
"Usage:
$0
{start | stop | restart}"
25
;;
26
esac
27
exit
$?