diff --git a/net/srelay/Makefile b/net/srelay/Makefile index 7a8cb4233..d579d1d50 100644 --- a/net/srelay/Makefile +++ b/net/srelay/Makefile @@ -1,5 +1,5 @@ # -# Copyright (C) 2006-2010 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:=srelay PKG_VERSION:=0.4.8b3 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=@SF/socks-relay diff --git a/net/srelay/files/srelay.init b/net/srelay/files/srelay.init index 6d2343888..95d1d8137 100644 --- a/net/srelay/files/srelay.init +++ b/net/srelay/files/srelay.init @@ -1,13 +1,14 @@ #!/bin/sh /etc/rc.common -# Copyright (C) 2006 OpenWrt.org +# Copyright (C) 2006-2011 OpenWrt.org + START=50 +SERVICE_USE_PID=1 + start() { - if [ -f /etc/srelay.conf ];then - srelay -c /etc/srelay.conf -r -s - fi + service_start /usr/bin/srelay -c /etc/srelay.conf -r -s } stop() { - killall srelay + service_stop /usr/bin/srelay }