From: Jo-Philipp Wich Date: Sun, 5 Feb 2012 14:59:38 +0000 (+0000) Subject: [packages_10.03.2] arpwatch: merge r28912 X-Git-Url: http://git.cdn.openwrt.org/?a=commitdiff_plain;h=a4dfdbeedff0640c08611aad6a550e390263a440;p=openwrt%2Fsvn-archive%2Farchive.git [packages_10.03.2] arpwatch: merge r28912 SVN-Revision: 30192 --- diff --git a/net/arpwatch/Makefile b/net/arpwatch/Makefile index fe981fef5a..20b1959b60 100644 --- a/net/arpwatch/Makefile +++ b/net/arpwatch/Makefile @@ -1,5 +1,5 @@ # -# Copyright (C) 2006-2009 OpenWrt.org +# Copyright (C) 2006-2011 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=arpwatch PKG_VERSION:=2.1a15 -PKG_RELEASE:=2 +PKG_RELEASE:=3 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=ftp://ftp.free.fr/.mirrors1/ftp.gentoo.org/distfiles/ diff --git a/net/arpwatch/files/arpwatch.init b/net/arpwatch/files/arpwatch.init index 56d13e3add..b05692b5c9 100644 --- a/net/arpwatch/files/arpwatch.init +++ b/net/arpwatch/files/arpwatch.init @@ -1,10 +1,12 @@ #!/bin/sh /etc/rc.common +# Copyright (C) 2006-2011 OpenWrt.org + START=90 -start () { - arpwatch -f /etc/arpwatch/arp.dat -i br-lan +start() { + service_start /usr/sbin/arpwatch -f /etc/arpwatch/arp.dat -i br-lan } stop() { - killall arpwatch + service_stop /usr/sbin/arpwatch }