#!/bin/sh

uci -q batch <<-EOT
	delete firewall.dnsmasq
	set firewall.dnsmasq=include
	set firewall.dnsmasq.type=script
	set firewall.dnsmasq.path=/usr/share/dnsmasq/firewall.include
	set firewall.dnsmasq.family=any
	set firewall.dnsmasq.reload=1
	commit firewall
EOT

exit 0
 
