
* luci-app-verysync: add button * fix compatibility with LuCI2 * improve translation * improve translation * fix mistake
12 lines
194 B
Bash
Executable File
12 lines
194 B
Bash
Executable File
#!/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 -f /tmp/luci-indexcache
|
|
exit 0
|