forked from hummypkg/webif
19 lines
217 B
Plaintext
19 lines
217 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
. /mod/webif/lib/lib.sh
|
||
|
|
||
|
export TZ=GMT+0BST,M3.5.0/1,M10.5.0/2
|
||
|
|
||
|
case "$1" in
|
||
|
start)
|
||
|
/mod/webif/lib/bin/manage_logs
|
||
|
plog activity "System booted (`lbr_descr`)."
|
||
|
;;
|
||
|
stop)
|
||
|
;;
|
||
|
*)
|
||
|
exit 1
|
||
|
;;
|
||
|
esac
|
||
|
|