projects
/
openwrt
/
svn-archive
/
archive.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
fix uclibc++ build
[openwrt/svn-archive/archive.git]
/
admin
/
monit
/
files
/
monit.init
1
#!/bin/sh /etc/rc.common
2
# Copyright (C) 2006 OpenWrt.org
3
4
START
=
60
5
BIN
=
monit
6
DEFAULT
=/
etc
/
default
/
$BIN
7
RUN_D
=/
var
/
run
8
PID_F
=
$RUN_D
/
$BIN
.pid
9
10
start
() {
11
[
-f
$DEFAULT
] &&
.
$DEFAULT
12
mkdir
-p
$RUN_D
13
$BIN $OPTIONS
14
}
15
16
stop
() {
17
[
-f
$PID_F
] &&
kill
$
(
cat
$PID_F
)
18
}
19