Formatting

@Neilpang, I believe I have fixed up the formatting.  FYI you have write permissions to this branch, and I can test as needed.
This commit is contained in:
Jason 2017-03-16 08:32:35 -05:00 committed by GitHub
parent 4f759172f8
commit 8fab63689e

View File

@ -27,7 +27,7 @@ dns_infoblox_add() {
_saveaccountconf Infoblox_Creds "$Infoblox_Creds" _saveaccountconf Infoblox_Creds "$Infoblox_Creds"
_saveaccountconf Infoblox_Server "$Infoblox_Server" _saveaccountconf Infoblox_Server "$Infoblox_Server"
result=`curl -k -u $Infoblox_Creds -X POST $baseurlnObject` result=$(curl -k -u $Infoblox_Creds -X POST $baseurlnObject)
if _info "$result" | egrep 'record:txt/.*:.*/default'; then if _info "$result" | egrep 'record:txt/.*:.*/default'; then
_info "Successfully created the txt record" _info "Successfully created the txt record"
@ -58,7 +58,7 @@ baseurlnObject="https://$Infoblox_Server/wapi/v2.2.2/record:txt?name=$fulldomain
_info "$baseurlnObject" _info "$baseurlnObject"
result=`curl -k -u $Infoblox_Creds -X GET $baseurlnObject` result=$(curl -k -u $Infoblox_Creds -X GET $baseurlnObject)
if _info "$result" | egrep 'record:txt/.*:.*/default'; then if _info "$result" | egrep 'record:txt/.*:.*/default'; then
# Extract object ref # Extract object ref