mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-15 18:03:30 +00:00
12 lines
201 B
Bash
Executable File
12 lines
201 B
Bash
Executable File
#!/bin/sh
|
|
|
|
uci -q batch <<-EOF >/dev/null
|
|
delete ucitrack.@frps[-1]
|
|
add ucitrack frps
|
|
set ucitrack.@frps[-1].init=frps
|
|
commit ucitrack
|
|
EOF
|
|
|
|
rm -rf /tmp/luci-indexcache /tmp/luci-modulecache
|
|
exit 0
|