You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

23 lines
486 B

#!/bin/sh /etc/rc.common
# Copyright (C) 2006-2011 OpenWrt.org
START=50
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'
service_start /usr/sbin/iodined -l "$address" -P "$password" "$tunnelip" "$tld"
}
start() {
config_load 'iodined'
config_foreach start_instance 'iodined'
}
stop() {
service_stop /usr/sbin/iodined
}