mirror of
https://github.com/SunBK201/UA3F.git
synced 2025-12-16 08:44:29 +00:00
12 lines
237 B
Bash
12 lines
237 B
Bash
#!/bin/sh
|
|
|
|
[ -e "/etc/config/ucitrack" ] && {
|
|
uci -q delete ucitrack.@ua3f[-1]
|
|
uci -q add ucitrack ua3f
|
|
uci -q set ucitrack.@ua3f[-1].init=ua3f
|
|
uci -q commit ucitrack
|
|
}
|
|
|
|
rm -f /tmp/luci-indexcache* >/dev/null 2>&1
|
|
exit 0
|