packages/iodine: use new service functions

git-svn-id: svn://svn.openwrt.org/openwrt/packages@29059 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nico 2011-11-13 22:15:45 +00:00
parent cf0e4e9e2e
commit 6e740b78e9
2 changed files with 13 additions and 12 deletions

View File

@ -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:=iodine
PKG_VERSION:=0.6.0-rc1
PKG_RELEASE:=3
PKG_RELEASE:=4
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=http://code.kryo.se/iodine/

View File

@ -1,22 +1,23 @@
#!/bin/sh /etc/rc.common
# Copyright (C) 2006 OpenWrt.org
# Copyright (C) 2006-2011 OpenWrt.org
START=50
start_service () {
start_instance () {
local section="$1"
config_get address "$section" address
config_get password "$section" password
config_get tunnelip "$section" tunnelip
config_get tld "$section" tld
config_get address "$section" 'address'
config_get password "$section" 'password'
config_get tunnelip "$section" 'tunnelip'
config_get tld "$section" 'tld'
iodined -l $address -P $password $tunnelip $tld
service_start /usr/sbin/iodined -l "$address" -P "$password" "$tunnelip" "$tld"
}
start() {
config_load "iodined"
config_foreach start_service iodined
config_load 'iodined'
config_foreach start_instance 'iodined'
}
stop() {
killall iodined
service_stop /usr/sbin/iodined
}