aboutsummaryrefslogtreecommitdiffstats
path: root/net-mgmt
diff options
context:
space:
mode:
authorrafan <rafan@FreeBSD.org>2006-08-20 18:53:59 +0800
committerrafan <rafan@FreeBSD.org>2006-08-20 18:53:59 +0800
commitfe55ea0e7a9c0635244df4c5525ecb252dea5379 (patch)
treec12612b65a7dc255672f1b9bc387815c80a8648e /net-mgmt
parentb422c4a30cd09f97cd1d86ba7d0ef42575c9acb4 (diff)
downloadfreebsd-ports-gnome-fe55ea0e7a9c0635244df4c5525ecb252dea5379.tar.gz
freebsd-ports-gnome-fe55ea0e7a9c0635244df4c5525ecb252dea5379.tar.zst
freebsd-ports-gnome-fe55ea0e7a9c0635244df4c5525ecb252dea5379.zip
- Fix problem when multiple interfaces are defined and faststart command
is used. Bump PORTREVISION PR: ports/101462 Submitted by: Jordan Gordeev <jgordeev at dir.bg> Approved by: Thomas Abthorpe <thomas at goodking.ca> (maintainer)
Diffstat (limited to 'net-mgmt')
-rw-r--r--net-mgmt/arpwatch/Makefile1
-rw-r--r--net-mgmt/arpwatch/files/arpwatch.sh.in2
2 files changed, 2 insertions, 1 deletions
diff --git a/net-mgmt/arpwatch/Makefile b/net-mgmt/arpwatch/Makefile
index d2bbef4a46c5..2b3c45bdf956 100644
--- a/net-mgmt/arpwatch/Makefile
+++ b/net-mgmt/arpwatch/Makefile
@@ -7,6 +7,7 @@
PORTNAME= arpwatch
PORTVERSION= 2.1.a15
+PORTREVISION= 1
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 35a7df2e36c1..346ca1ae2ee7 100644
--- a/net-mgmt/arpwatch/files/arpwatch.sh.in
+++ b/net-mgmt/arpwatch/files/arpwatch.sh.in
@@ -63,7 +63,7 @@ case ${arpwatch_interfaces} in
;;
*)
- if [ "$1" = "start" ]; then
+ if [ "$1" = "start" -o "$1" = "faststart" ]; then
for interface in ${arpwatch_interfaces}; do
eval options=\$arpwatch_${interface}_options
command_args="-i ${interface} ${options} -f arp.${interface}.dat"