diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2016-07-27 15:51:52 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2016-07-27 15:52:02 -0700 |
commit | 223fb8e53d2e97688e3be0313ec0d49b46483b1a (patch) | |
tree | 35be93500540037b4f6c9d1d3be6028ad24dfa0a /net-analyzer/flow-tools/files/flowcapture.confd | |
parent | app-portage/repoman: 2.3.0-r1 revbump with patch for bug 586864 (diff) | |
download | gentoo-223fb8e53d2e97688e3be0313ec0d49b46483b1a.tar.gz gentoo-223fb8e53d2e97688e3be0313ec0d49b46483b1a.tar.bz2 gentoo-223fb8e53d2e97688e3be0313ec0d49b46483b1a.zip |
net-analyzer/flow-tools: fix pidfile port suffix to match in both confd and initd.
Package-Manager: portage-2.2.28
Diffstat (limited to 'net-analyzer/flow-tools/files/flowcapture.confd')
-rw-r--r-- | net-analyzer/flow-tools/files/flowcapture.confd | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/net-analyzer/flow-tools/files/flowcapture.confd b/net-analyzer/flow-tools/files/flowcapture.confd index 82ce38a4bc73..20a238584d0f 100644 --- a/net-analyzer/flow-tools/files/flowcapture.confd +++ b/net-analyzer/flow-tools/files/flowcapture.confd @@ -39,7 +39,10 @@ WORKDIR=/var/lib/flows/ft # user to run as USER=flows +# Pidfile +PIDFILE=/run/flows/flowcapture.pid.${PORT} + # This pulls in the options above -FLOW_OPTS="-p /run/flows/flowcapture.pid -w $WORKDIR $LOCALIP/$REMOTEIP/$PORT -V $FLOW_VER -E $SIZE -n $ROTATIONS -N $NEST -R $ROTATE_PROG" +FLOW_OPTS="-p $PIDFILE -w $WORKDIR $LOCALIP/$REMOTEIP/$PORT -V $FLOW_VER -E $SIZE -n $ROTATIONS -N $NEST -R $ROTATE_PROG" # Use below only if you have sorted out the STAT_INT problem -#FLOW_OPTS="-p /run/flows/flowcapture.pid -w $WORKDIR $LOCALIP/$REMOTEIP/$PORT -S $STAT_INT -V $FLOW_VER -E $SIZE -n $ROTATIONS -N $NEST -R $ROTATE_PROG" +#FLOW_OPTS="-p /run/flows/flowcapture.pid.$PORT -w $WORKDIR $LOCALIP/$REMOTEIP/$PORT -S $STAT_INT -V $FLOW_VER -E $SIZE -n $ROTATIONS -N $NEST -R $ROTATE_PROG" |