2018-02-20 16:10:59 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
uci -q batch <<-EOF >/dev/null
|
|
|
|
set unbound.@unbound[-1].listen_port=5353
|
|
|
|
commit unbound
|
2018-02-23 16:34:34 +00:00
|
|
|
add_list dhcp.@dnsmasq[-1].server="127.0.0.1#5353"
|
2018-02-20 16:10:59 +00:00
|
|
|
commit dhcp
|
|
|
|
EOF
|
|
|
|
rm -f /tmp/luci-indexcache
|
|
|
|
|
|
|
|
exit 0
|