#!/bin/sh

[ -n "$(uci -q get dhcp.@dnsmasq[0].domain)" ] && {
	uci delete dhcp.@dnsmasq[0].domain
	uci commit dhcp
}

exit 0
