mirror of
https://github.com/caiwx86/small-packages.git
synced 2026-08-01 20:39:36 +08:00
12 lines
191 B
Bash
12 lines
191 B
Bash
#!/bin/sh
|
|
|
|
uci -q batch <<-EOF >/dev/null
|
|
delete ucitrack.@verysync[-1]
|
|
add ucitrack verysync
|
|
set ucitrack.@verysync[-1].init=verysync
|
|
commit ucitrack
|
|
EOF
|
|
|
|
rm -rf /tmp/luci-*cache
|
|
exit 0
|