diff options
author | Rong-En Fan <rafan@FreeBSD.org> | 2006-08-20 10:53:59 +0000 |
---|---|---|
committer | Rong-En Fan <rafan@FreeBSD.org> | 2006-08-20 10:53:59 +0000 |
commit | ffdc3150345ef974289fb9dee9c69a39412ebd8e (patch) | |
tree | d98fc4875aa732b11c3642d862c0cb05944d8626 /net-mgmt/arpwatch | |
parent | b780c69f8d8e9a563b07c3973b803b6503f581c2 (diff) | |
download | freebsd-ports-ffdc3150345ef974289fb9dee9c69a39412ebd8e.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/arpwatch')
-rw-r--r-- | net-mgmt/arpwatch/Makefile | 1 | ||||
-rw-r--r-- | net-mgmt/arpwatch/files/arpwatch.sh.in | 2 |
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" |