11 lines
164 B
Bash
Executable File
11 lines
164 B
Bash
Executable File
#!/bin/sh
|
|
|
|
uci -q batch <<-EOF >/dev/null
|
|
delete ucitrack.@aliddns[-1]
|
|
add ucitrack aliddns
|
|
set ucitrack.@aliddns[-1].init=aliddns
|
|
commit ucitrack
|
|
EOF
|
|
|
|
exit 0
|