2025-05-29 15:07:58 +08:00

14 lines
225 B
Bash

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