mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-16 14:23:38 +00:00
12 lines
178 B
Bash
Executable File
12 lines
178 B
Bash
Executable File
#!/bin/sh
|
|
|
|
uci -q batch <<-EOF >/dev/null
|
|
delete ucitrack.@mosdns[-1]
|
|
add ucitrack mosdns
|
|
set ucitrack.@mosdns[-1].init=mosdns
|
|
commit ucitrack
|
|
EOF
|
|
|
|
rm -rf /tmp/luci-*
|
|
exit 0
|