blob: 6d0c113b76d4ad916124fbfe3b1680aa42776f3d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/sbin/runscript
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
depend() {
need net
}
start() {
ebegin "Starting flow-capture"
start-stop-daemon --start --quiet -c ${USER} --exec /usr/bin/flow-capture \
-- ${FLOW_OPTS} >/dev/null 2>&1
eend $?
}
stop() {
ebegin "Stopping flow-capture"
start-stop-daemon --stop --quiet --pidfile ${PIDFILE}.${PORT}
eend $?
}
|