13 lines
195 B
Text
13 lines
195 B
Text
|
#!/bin/sh
|
||
|
|
||
|
uci -q batch <<-EOF >/dev/null
|
||
|
delete ucitrack.@unbound[-1]
|
||
|
add ucitrack unbound
|
||
|
set ucitrack.@unbound[-1].init=unbound
|
||
|
commit ucitrack
|
||
|
EOF
|
||
|
|
||
|
rm -f /tmp/luci-indexcache
|
||
|
exit 0
|
||
|
|