123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- #!/usr/bin/env sh
- dns_infoblox_add() {
-
- fulldomain=$1
- txtvalue=$2
- baseurlnObject="https://$Infoblox_Server/wapi/v2.2.2/record:txt?name=$fulldomain&text=$txtvalue&view=$Infoblox_View"
- _info "Using Infoblox API"
- _debug fulldomain "$fulldomain"
- _debug txtvalue "$txtvalue"
-
- if [ -z "$Infoblox_Creds" ] || [ -z "$Infoblox_Server" ]; then
- Infoblox_Creds=""
- Infoblox_Server=""
- _err "You didn't specify the credentials, server or infoblox view yet (Infoblox_Creds, Infoblox_Server and Infoblox_View)."
- _err "Please set them via EXPORT ([username:password], [ip or hostname]) and try again."
- return 1
- fi
- if [ -z "$Infoblox_View" ]; then
- Infoblox_View="default"
- fi
-
- _saveaccountconf Infoblox_Creds "$Infoblox_Creds"
- _saveaccountconf Infoblox_Server "$Infoblox_Server"
- _saveaccountconf Infoblox_View "$Infoblox_View"
-
- Infoblox_CredsEncoded=$(printf "%b" "$Infoblox_Creds" | _base64)
-
- export _H1="Accept-Language:en-US"
- export _H2="Authorization: Basic $Infoblox_CredsEncoded"
-
- result="$(_post "" "$baseurlnObject" "" "POST")"
-
- if [ "$(echo "$result" | _egrep_o "record:txt/.*:.*/$Infoblox_View")" ]; then
- _info "Successfully created the txt record"
- return 0
- else
- _err "Error encountered during record addition"
- _err "$result"
- return 1
- fi
- }
- dns_infoblox_rm() {
-
- fulldomain=$1
- txtvalue=$2
- _info "Using Infoblox API"
- _debug fulldomain "$fulldomain"
- _debug txtvalue "$txtvalue"
-
- Infoblox_CredsEncoded="$(printf "%b" "$Infoblox_Creds" | _base64)"
-
- export _H1="Accept-Language:en-US"
- export _H2="Authorization: Basic $Infoblox_CredsEncoded"
-
- baseurlnObject="https://$Infoblox_Server/wapi/v2.2.2/record:txt?name=$fulldomain&text=$txtvalue&view=$Infoblox_View&_return_type=xml-pretty"
- result="$(_get "$baseurlnObject")"
-
- if [ "$(echo "$result" | _egrep_o "record:txt/.*:.*/$Infoblox_View")" ]; then
-
- objRef="$(printf "%b" "$result" | _egrep_o "record:txt/.*:.*/$Infoblox_View")"
- objRmUrl="https://$Infoblox_Server/wapi/v2.2.2/$objRef"
-
- rmResult="$(_post "" "$objRmUrl" "" "DELETE")"
-
- if [ "$(echo "$rmResult" | _egrep_o "record:txt/.*:.*/$Infoblox_View")" ]; then
- _info "Successfully deleted $objRef"
- return 0
- else
- _err "Error occurred during txt record delete"
- _err "$rmResult"
- return 1
- fi
- else
- _err "Record to delete didn't match an existing record"
- _err "$result"
- return 1
- fi
- }
|