aboutsummaryrefslogtreecommitdiff
path: root/net-mgmt/arpwatch
diff options
context:
space:
mode:
authorCheng-Lung Sung <clsung@FreeBSD.org>2006-10-04 00:58:55 +0000
committerCheng-Lung Sung <clsung@FreeBSD.org>2006-10-04 00:58:55 +0000
commit74165861900b64da463eea22ff32034011b8f959 (patch)
tree9a8aa61e937d0f7c29e6bb726ec42c0d406379cd /net-mgmt/arpwatch
parentec57fce26a681db085439661a9ded5a7b7038f1b (diff)
downloadports-74165861900b64da463eea22ff32034011b8f959.tar.gz
ports-74165861900b64da463eea22ff32034011b8f959.zip
- make arpwatch work fine with multiple interfaces.
- bump PORTREVISION PR: 103941 Submitted by: Fabian Wenk <fabian_AT_wenks dot ch> Approved by: maintainer (Thomas Abthorpe)
Notes
Notes: svn path=/head/; revision=174419
Diffstat (limited to 'net-mgmt/arpwatch')
-rw-r--r--net-mgmt/arpwatch/Makefile2
-rw-r--r--net-mgmt/arpwatch/files/arpwatch.sh.in1
2 files changed, 2 insertions, 1 deletions
diff --git a/net-mgmt/arpwatch/Makefile b/net-mgmt/arpwatch/Makefile
index a9f76ffcd380..41f3f77f5eb9 100644
--- a/net-mgmt/arpwatch/Makefile
+++ b/net-mgmt/arpwatch/Makefile
@@ -7,7 +7,7 @@
PORTNAME= arpwatch
PORTVERSION= 2.1.a15
-PORTREVISION= 2
+PORTREVISION= 3
CATEGORIES= net-mgmt
MASTER_SITES= ftp://ftp.ee.lbl.gov/ \
http://www.mirrors.wiretapped.net/security/network-monitoring/arpwatch/ \
diff --git a/net-mgmt/arpwatch/files/arpwatch.sh.in b/net-mgmt/arpwatch/files/arpwatch.sh.in
index 908737fb2406..541aa2bf6ccf 100644
--- a/net-mgmt/arpwatch/files/arpwatch.sh.in
+++ b/net-mgmt/arpwatch/files/arpwatch.sh.in
@@ -67,6 +67,7 @@ case ${arpwatch_interfaces} in
for interface in ${arpwatch_interfaces}; do
eval options=\$arpwatch_${interface}_options
command_args="-i ${interface} ${options} -f arp.${interface}.dat"
+ pidfile="/var/run/arpwatch-${interface}.pid"
run_rc_command "$1"
done
;;