blob: f2b2487cac19fb7970e08cf08847aed701a5a109 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
uci -q batch <<-EOF >/dev/null
delete ucitrack.@ahcpd[-1]
add ucitrack ahcpd
set ucitrack.@ahcpd[-1].init=ahcpd
commit ucitrack
EOF
rm -f /tmp/luci-indexcache
exit 0
|