1234567891011121314151617181920212223242526272829303132333435 |
- #!/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"
- }
|