mirror of
https://github.com/kenzok8/openwrt-packages.git
synced 2025-11-03 08:28:50 +08:00
12 lines
185 B
Plaintext
12 lines
185 B
Plaintext
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
uci -q batch <<-EOF >/dev/null
|
||
|
|
delete ucitrack.@ddnsto[-1]
|
||
|
|
add ucitrack ddnsto
|
||
|
|
set ucitrack.@ddnsto[-1].init=ddnsto
|
||
|
|
commit ucitrack
|
||
|
|
EOF
|
||
|
|
|
||
|
|
/etc/init.d/ddnsto enable
|
||
|
|
|
||
|
|
exit 0
|