12 lines
248 B
Plaintext
12 lines
248 B
Plaintext
![]() |
#!/bin/sh
|
||
|
|
||
|
uci -q batch <<-EOF >/dev/null
|
||
|
del ucitrack.@appfilter[-1]
|
||
|
add ucitrack appfilter
|
||
|
set ucitrack.@appfilter[-1].exec="/usr/bin/oaf_rule reload"
|
||
|
commit ucitrack
|
||
|
EOF
|
||
|
|
||
|
# remove LuCI cache
|
||
|
rm -rf /tmp/luci-indexcache /tmp/luci-modulecache
|