14 lines
241 B
Bash
Executable File
14 lines
241 B
Bash
Executable File
#!/bin/sh
|
|
|
|
[ -f "/etc/config/ucitrack" ] && {
|
|
uci -q batch <<-EOF >/dev/null
|
|
delete ucitrack.@airconnect[-1]
|
|
add ucitrack airconnect
|
|
set ucitrack.@airconnect[-1].init=airconnect
|
|
commit ucitrack
|
|
EOF
|
|
}
|
|
|
|
rm -rf /tmp/luci-indexcache*
|
|
exit 0
|