mirror of
https://github.com/kenzok8/openwrt-packages.git
synced 2025-01-08 11:37:36 +08:00
12 lines
185 B
Bash
Executable File
12 lines
185 B
Bash
Executable File
#!/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 |