diff options
author | Markus Ullmann <jokey@gentoo.org> | 2007-02-01 20:57:14 +0000 |
---|---|---|
committer | Markus Ullmann <jokey@gentoo.org> | 2007-02-01 20:57:14 +0000 |
commit | ba075f3d08d8f6ece3806bd3a00fe574195f1fce (patch) | |
tree | 5eff2220d0a61a00570f43de04594ef936489961 /net-analyzer/FlowScan/files | |
parent | cleanup (diff) | |
download | gentoo-2-ba075f3d08d8f6ece3806bd3a00fe574195f1fce.tar.gz gentoo-2-ba075f3d08d8f6ece3806bd3a00fe574195f1fce.tar.bz2 gentoo-2-ba075f3d08d8f6ece3806bd3a00fe574195f1fce.zip |
fix exec bit
(Portage version: 2.1.2-r1)
Diffstat (limited to 'net-analyzer/FlowScan/files')
-rwxr-xr-x | net-analyzer/FlowScan/files/flowscan.init | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/net-analyzer/FlowScan/files/flowscan.init b/net-analyzer/FlowScan/files/flowscan.init new file mode 100755 index 000000000000..42b7ccaf3d05 --- /dev/null +++ b/net-analyzer/FlowScan/files/flowscan.init @@ -0,0 +1,17 @@ +#!/sbin/runscript +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +depend() { + need net +} + +start() { + ebegin "Starting flowscan processing" + cd /var/lib/flows ; start-stop-daemon --start --quiet -c flows:flows --exec bin/flowscan \ + -p /var/run/flows/flowscan.pid -m -b >> /var/log/flowscan 2>&1 </dev/null & >/dev/null +} + +stop() { + start-stop-daemon --stop --quiet -p /var/run/flows/flowscan.pid +} |