forked from hummypkg/webif
1fc426cb1a
git-svn-id: file:///root/webif/svn/pkg/webif/trunk@3434 2a923420-c742-0410-a762-8d5b09965624
19 lines
217 B
Bash
Executable File
19 lines
217 B
Bash
Executable File
#!/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
|
|
|