mirror of
https://github.com/kenzok8/small-package
synced 2025-09-20 19:11:30 +08:00
12 lines
177 B
Bash
Executable File
12 lines
177 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 -f /tmp/luci-*
|
|
exit 0
|