9 lines
156 B
Bash
Executable file
9 lines
156 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# no longer needed for "Save and Apply" to restart ddns
|
|
uci -q batch <<-EOF >/dev/null
|
|
delete ucitrack.@ddns[-1]
|
|
commit ucitrack
|
|
EOF
|
|
|
|
return 0
|