mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-16 04:13:31 +00:00
11 lines
197 B
Bash
11 lines
197 B
Bash
#!/bin/sh
|
|
|
|
uci -q batch <<-EOF >/dev/null
|
|
delete ucitrack.@dogcom[-1]
|
|
add ucitrack dogcom
|
|
set ucitrack.@dogcom[-1].init=dogcom
|
|
commit ucitrack
|
|
EOF
|
|
|
|
rm -f /tmp/luci-indexcache
|
|
exit 0 |