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