Commit c641b61b authored by Martin Kammerlander's avatar Martin Kammerlander
Browse files

Fix a few snytax issues

parent d87e5078
......@@ -78,8 +78,7 @@ dns_kas_rm() {
# split it into a seperated list, if there where multiples entries made
records=($_record_id)
for i in "${records[@]}"
do
for i in "${records[@]}"; do
params2="$params&var1=record_id"
params2="$params2&wert1=$i"
_debug2 "Wait for 10 seconds by default before calling KAS API."
......@@ -95,7 +94,7 @@ dns_kas_rm() {
_err "No record_id found that can be deleted. Please check manually."
return 1
fi
return 0
return 0
}
########################## PRIVATE FUNCTIONS ###########################
......
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