packages/net/batman-advanced/files/etc/init.d/batman-adv-kernelland
marek cebd3edf9d batman makefiles / configs / init scripts revised
vis package added


git-svn-id: svn://svn.openwrt.org/openwrt/packages@15332 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-04-21 19:16:40 +00:00

34 lines
789 B
Bash

#!/bin/sh /etc/rc.common
START=90
. /lib/config/uci.sh
uci_load batman-adv-kernelland
start () {
interfaces=$(uci get batman-adv-kernelland.general.interface)
if [ "$interfaces" = "" ]; then
echo $1 Error, you must specify at least a network interface
exit
fi
for interface in $interfaces
do
echo $interface > /proc/net/batman-adv/interfaces
done
originator_interval=$(uci get batman-adv-kernelland.general.originator_interval)
log_level=$(uci get batman-adv-kernelland.general.log_level)
if [ $originator_interval ]; then
echo $originator_interval > /proc/net/batman-adv/originator_interval
fi
if [ $log_level ]; then
echo $log_level > /proc/net/batman-adv/log_level
fi
}
stop () {
echo "" > /proc/net/batman-adv/interfaces
}