mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-06-20 08:05:29 +08:00
12 lines
186 B
Bash
Executable File
12 lines
186 B
Bash
Executable File
#!/bin/sh
|
|
|
|
uci -q batch <<-EOF >/dev/null
|
|
delete ucitrack.@n2n_v2[-1]
|
|
add ucitrack n2n_v2
|
|
set ucitrack.@n2n_v2[-1].init=n2n_v2
|
|
commit ucitrack
|
|
EOF
|
|
|
|
rm -f /tmp/luci-indexcache
|
|
exit 0
|