From 2b58c243b26e731a02fb648d28369c10be256965 Mon Sep 17 00:00:00 2001 From: Jason Date: Tue, 21 Mar 2017 08:15:11 -0500 Subject: [PATCH] Remove from root folder --- dns_infoblox.sh | 94 ------------------------------------------------- 1 file changed, 94 deletions(-) delete mode 100644 dns_infoblox.sh diff --git a/dns_infoblox.sh b/dns_infoblox.sh deleted file mode 100644 index 4f1cb13c..00000000 --- a/dns_infoblox.sh +++ /dev/null @@ -1,94 +0,0 @@ -#!/usr/bin/env sh - -dns_infoblox_add() { - - ## Nothing to see here, just some housekeeping - fulldomain=$1 - txtvalue=$2 - baseurlnObject="https://$Infoblox_Server/wapi/v2.2.2/record:txt?name=$fulldomain&text=$txtvalue" - - _info "Using Infoblox API" - _debug fulldomain "$fulldomain" - _debug txtvalue "$txtvalue" - - ## Check for the credentials - if [ -z "$Infoblox_Creds" ] || [ -z "$Infoblox_Server" ]; then - Infoblox_Creds="" - Infoblox_Server="" - _err "You didn't specify the credentials or server yet (Infoblox_Creds and Infoblox_Server)." - _err "Please set them via EXPORT ([username:password] and [ip or hostname]) and try again." - return 1 - fi - - ## Save the credentials to the account file - _saveaccountconf Infoblox_Creds "$Infoblox_Creds" - _saveaccountconf Infoblox_Server "$Infoblox_Server" - - ## Base64 encode the credentials - Infoblox_CredsEncoded=$(echo -n "$Infoblox_Creds" | base64) - - ## Construct the HTTP Authorization header - export _H2="Authorization: Basic $Infoblox_CredsEncoded" - - ## Add the challenge record to the Infoblox grid member - result=$(_post "" "$baseurlnObject" "" "POST") - - ## Let's see if we get something intelligible back from the unit - if echo "$result" | egrep 'record:txt/.*:.*/default'; then - _info "Successfully created the txt record" - return 0 - else - _info "Error encountered during record addition" - _info "$result" - _err "$result" - return 1 - fi - -} - -dns_infoblox_rm() { - - ## Nothing to see here, just some housekeeping - fulldomain=$1 - txtvalue=$2 - - _info "Using Infoblox API" - _debug fulldomain "$fulldomain" - _debug txtvalue "$txtvalue" - - ## Base64 encode the credentials - Infoblox_CredsEncoded=$(echo -n "$Infoblox_Creds" | base64) - - ## Construct the HTTP Authorization header - export _H2="Authorization: Basic $Infoblox_CredsEncoded" - - ## Does the record exist? Let's check. - baseurlnObject="https://$Infoblox_Server/wapi/v2.2.2/record:txt?name=$fulldomain&text=$txtvalue&_return_type=xml-pretty" - result=$(_get "$baseurlnObject") - - ## Let's see if we get something intelligible back from the grid - if echo "$result" | egrep 'record:txt/.*:.*/default'; then - ## Extract the object reference - objRef=$(egrep -o 'record:txt/.*:.*/default' <<<$result) - objRmUrl="https://$Infoblox_Server/wapi/v2.2.2/$objRef" - ## Delete them! All the stale records! - rmResult=$(_post "" "$objRmUrl" "" "DELETE") - ## Let's see if that worked - if echo "$rmResult" | egrep 'record:txt/.*:.*/default'; then - _info "Successfully deleted $objRef" - return 0 - else - _info "Error occurred during txt record delete" - _info "$rmResult" - _err "$rmResult" - return 1 - fi - else - _info "Record to delete didn't match an existing record" - _info "$result" - _err "$result" - return 1 - fi -} - -#################### Private functions below ##################################