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