diff options
author | tabthorpe <tabthorpe@FreeBSD.org> | 2010-02-02 13:14:29 +0800 |
---|---|---|
committer | tabthorpe <tabthorpe@FreeBSD.org> | 2010-02-02 13:14:29 +0800 |
commit | 9d2bbf375f69cf2337007c04b34eff970f4c91a8 (patch) | |
tree | 674305fa10778fb850a5771263feda9ccbd4e262 /net-mgmt/arpwatch | |
parent | 8d851026b05a87cda664b1a275d67b3c24833215 (diff) | |
download | freebsd-ports-gnome-9d2bbf375f69cf2337007c04b34eff970f4c91a8.tar.gz freebsd-ports-gnome-9d2bbf375f69cf2337007c04b34eff970f4c91a8.tar.zst freebsd-ports-gnome-9d2bbf375f69cf2337007c04b34eff970f4c91a8.zip |
- Set path in command_args
- Bump PORTREVISION
Submitted by: Arjan de Vet, via private email
Diffstat (limited to 'net-mgmt/arpwatch')
-rw-r--r-- | net-mgmt/arpwatch/Makefile | 2 | ||||
-rw-r--r-- | net-mgmt/arpwatch/files/arpwatch.sh.in | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/net-mgmt/arpwatch/Makefile b/net-mgmt/arpwatch/Makefile index 16922c182a47..688b79c56d67 100644 --- a/net-mgmt/arpwatch/Makefile +++ b/net-mgmt/arpwatch/Makefile @@ -7,7 +7,7 @@ PORTNAME= arpwatch PORTVERSION= 2.1.a15 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= net-mgmt MASTER_SITES= ftp://ftp.ee.lbl.gov/ \ ${MASTER_SITE_GENTOO} diff --git a/net-mgmt/arpwatch/files/arpwatch.sh.in b/net-mgmt/arpwatch/files/arpwatch.sh.in index 541aa2bf6ccf..b9d56ee5e572 100644 --- a/net-mgmt/arpwatch/files/arpwatch.sh.in +++ b/net-mgmt/arpwatch/files/arpwatch.sh.in @@ -66,7 +66,7 @@ case ${arpwatch_interfaces} in *start) for interface in ${arpwatch_interfaces}; do eval options=\$arpwatch_${interface}_options - command_args="-i ${interface} ${options} -f arp.${interface}.dat" + command_args="-i ${interface} ${options} -f ${arpwatch_dir}/arp.${interface}.dat" pidfile="/var/run/arpwatch-${interface}.pid" run_rc_command "$1" done |