diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2014-10-27 00:19:57 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2014-10-27 00:19:57 +0000 |
commit | ce9abd4b39b3ea1b423ba4093d9b6c93cb23f280 (patch) | |
tree | 857f297db15aab1b49ff23e9031dee8d36a1ae22 /net-analyzer/flow-tools/files | |
parent | Fix DEPNED typo (diff) | |
download | historical-ce9abd4b39b3ea1b423ba4093d9b6c93cb23f280.tar.gz historical-ce9abd4b39b3ea1b423ba4093d9b6c93cb23f280.tar.bz2 historical-ce9abd4b39b3ea1b423ba4093d9b6c93cb23f280.zip |
Revbump for daemon tweak to init script.
Package-Manager: portage-2.2.10/cvs/Linux x86_64
Diffstat (limited to 'net-analyzer/flow-tools/files')
-rwxr-xr-x | net-analyzer/flow-tools/files/flowcapture.initd | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net-analyzer/flow-tools/files/flowcapture.initd b/net-analyzer/flow-tools/files/flowcapture.initd index 54d581908093..668a8e54fe37 100755 --- a/net-analyzer/flow-tools/files/flowcapture.initd +++ b/net-analyzer/flow-tools/files/flowcapture.initd @@ -3,7 +3,7 @@ # Distributed under the terms of the GNU General Public License v2 depend() { - need net + use net } start() { @@ -11,7 +11,7 @@ start() { checkpath -d -o flows /run/flows start-stop-daemon --start --user ${USER} --exec /usr/bin/flow-capture \ --pidfile /run/flows/flowcapture.pid.${PORT} \ - -- ${FLOW_OPTS} >/dev/null 2>&1 + -- -D ${FLOW_OPTS} >/dev/null 2>&1 eend $? } |