12345678910111213141516171819202122232425262728293031323334353637 |
- #!/usr/bin/env sh
- dns_myapi_add() {
- fulldomain=$1
- txtvalue=$2
- _info "Using myapi"
- _debug fulldomain "$fulldomain"
- _debug txtvalue "$txtvalue"
- _err "Not implemented!"
- return 1
- }
- dns_myapi_rm() {
- fulldomain=$1
- txtvalue=$2
- _info "Using myapi"
- _debug fulldomain "$fulldomain"
- _debug txtvalue "$txtvalue"
- }
|