#!/bin/sh /etc/rc.common

START=99

start() {
	echo "start"
	[ `uci get network.lan.proto` = 'static' ] && /etc/init.d/dnsmasq restart
}

stop() {
    echo "stop"
}

