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