Commit 0bd4a4f9 authored by Rikard Gynnerstedt's avatar Rikard Gynnerstedt
Browse files

formated for sh instead of bash

parent 0b52645b
#!/bin/bash #!/bin/env sh
## Infoblox API integration by Jason Keller and Elijah Tenai ## Infoblox API integration by Jason Keller and Elijah Tenai
## ##
...@@ -43,7 +43,7 @@ dns_infoblox_add() { ...@@ -43,7 +43,7 @@ dns_infoblox_add() {
result=$(_post "" "$baseurlnObject" "" "POST") result=$(_post "" "$baseurlnObject" "" "POST")
## Let's see if we get something intelligible back from the unit ## Let's see if we get something intelligible back from the unit
if echo "$result" | egrep "record:txt/.*:.*/${Infoblox_View}"; then if echo "$result" | egrep "record:txt/.*:.*/$Infoblox_View"; then
_info "Successfully created the txt record" _info "Successfully created the txt record"
return 0 return 0
else else
...@@ -78,12 +78,12 @@ dns_infoblox_rm() { ...@@ -78,12 +78,12 @@ dns_infoblox_rm() {
## Let's see if we get something intelligible back from the grid ## Let's see if we get something intelligible back from the grid
if echo "$result" | egrep 'record:txt/.*:.*/default'; then if echo "$result" | egrep 'record:txt/.*:.*/default'; then
## Extract the object reference ## Extract the object reference
objRef=$(printf "%b" "$result" | _egrep_o "record:txt/.*:.*/${Infoblox_View}") objRef=$(printf "%b" "$result" | _egrep_o "record:txt/.*:.*/$Infoblox_View")
objRmUrl="https://$Infoblox_Server/wapi/v2.2.2/$objRef" objRmUrl="https://$Infoblox_Server/wapi/v2.2.2/$objRef"
## Delete them! All the stale records! ## Delete them! All the stale records!
rmResult=$(_post "" "$objRmUrl" "" "DELETE") rmResult=$(_post "" "$objRmUrl" "" "DELETE")
## Let's see if that worked ## Let's see if that worked
if echo "$rmResult" | egrep "record:txt/.*:.*/${Infoblox_View}"; then if echo "$rmResult" | egrep "record:txt/.*:.*/$Infoblox_View"; then
_info "Successfully deleted $objRef" _info "Successfully deleted $objRef"
return 0 return 0
else else
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment