From 2bc0a6510eb9507aee7a403e028fe689417f9a52 Mon Sep 17 00:00:00 2001 From: Nicolas Thill Date: Wed, 9 Nov 2011 23:43:25 +0000 Subject: [PATCH] packages/arpwatch: use new service functions SVN-Revision: 28912 --- net/arpwatch/Makefile | 4 ++-- net/arpwatch/files/arpwatch.init | 8 +++++--- 2 files changed, 7 insertions(+), 5 deletions(-) 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 } -- 2.30.2