packages/vpzone: use new service functions

git-svn-id: svn://svn.openwrt.org/openwrt/packages@29094 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nico 2011-11-14 02:38:42 +00:00
parent 33fa6ef156
commit 67ddcf9a51
2 changed files with 8 additions and 6 deletions

View File

@ -1,5 +1,5 @@
# #
# Copyright (C) 2010 OpenWrt.org # Copyright (C) 2010-2011 OpenWrt.org
# #
# This is free software, licensed under the GNU General Public License v2. # This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information. # See /LICENSE for more information.
@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=vpzone PKG_NAME:=vpzone
PKG_VERSION:=0.1.2 PKG_VERSION:=0.1.2
PKG_RELEASE:=2 PKG_RELEASE:=3
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
PKG_SOURCE_URL:=@SF/vpzone PKG_SOURCE_URL:=@SF/vpzone

View File

@ -1,13 +1,15 @@
#!/bin/sh /etc/rc.common #!/bin/sh /etc/rc.common
# Copyright (C) 2010-2011 OpenWrt.org
START=50 START=50
DAEMON=vpzone
PID_F=/var/run/$DAEMON.pid SERVICE_DAEMONIZE=1
SERVICE_WRITE_PID=1
start() { start() {
start-stop-daemon -p $PID_F -x $DAEMON -S -b -m service_start /usr/bin/vpzone
} }
stop() { stop() {
start-stop-daemon -p $PID_F -x $DAEMON -K service_stop /usr/bin/vpzone
} }