12 lines
146 B
Bash
Executable File
12 lines
146 B
Bash
Executable File
#!/bin/bash
|
|
|
|
dnsupdate_config() {
|
|
/usr/bin/dnsupdate "${interface}" "${new_ip_address}"
|
|
return 0
|
|
}
|
|
|
|
dnsupdate_restore() {
|
|
return 0
|
|
}
|
|
|