From: Nicolas Thill Date: Sun, 13 Nov 2011 22:15:27 +0000 (+0000) Subject: packages/netperf: use new service functions X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=786bcd568d73aaedcc0c0480a4bd949c38166f5c;p=openwrt%2Fsvn-archive%2Farchive.git packages/netperf: use new service functions SVN-Revision: 29050 --- diff --git a/net/netperf/Makefile b/net/netperf/Makefile index 09f0633b36..815853e304 100644 --- a/net/netperf/Makefile +++ b/net/netperf/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:=netperf PKG_VERSION:=2.4.5 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 PKG_SOURCE_URL:=ftp://ftp.netperf.org/netperf/ diff --git a/net/netperf/files/netserver.init b/net/netperf/files/netserver.init index 6d3ccdddeb..42fcf33571 100644 --- a/net/netperf/files/netserver.init +++ b/net/netperf/files/netserver.init @@ -1,11 +1,12 @@ #!/bin/sh /etc/rc.common -# Copyright (C) 2006 OpenWrt.org +# Copyright (C) 2006-2011 OpenWrt.org + START=50 start() { - /usr/bin/netserver + service_start /usr/bin/netserver } stop() { - killall netserver + service_stop /usr/bin/netserver }