File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -598,6 +598,7 @@ check_challenge_completion_dns() { # perform validation via DNS challenge
598
598
rr_cname=$( grep -i " ^${rr} " <<< " ${check_output}" | grep ' IN\WCNAME' | awk ' { print $5}' )
599
599
debug " cname check=\" $rr_cname \" "
600
600
if [[ -n " $rr_cname " ]]; then
601
+ # shellcheck disable=SC2086
601
602
check_output=$( $DNS_CHECK_FUNC $DNS_CHECK_OPTIONS TXT " ${rr_cname} " " @${ns} " )
602
603
check_result=$( grep -i " ^${rr_cname} " <<< " ${check_output}" | grep ' IN\WTXT' | awk -F' "' ' { print $2}' | uniq)
603
604
fi
@@ -1217,7 +1218,7 @@ create_order() {
1217
1218
dn=0
1218
1219
for d in " ${alldomains[@]} " ; do
1219
1220
# get authorizations link
1220
- AuthLink[$ dn ]=$( json_get " $response " " identifiers" " value" " ${d## \* .} " " authorizations" " x" )
1221
+ AuthLink[dn]=$( json_get " $response " " identifiers" " value" " ${d## \* .} " " authorizations" " x" )
1221
1222
debug " authorizations link for $d - ${AuthLink[$dn]} "
1222
1223
(( dn++ ))
1223
1224
done
@@ -1241,8 +1242,8 @@ create_order() {
1241
1242
if [[ ( " $lower_d " == " $authdomain " && -z " $wildcard " ) || ( " $lower_d " == " *.${authdomain} " && -n " $wildcard " ) ]]; then
1242
1243
debug " Saving authorization response for $authdomain for domain alldomains[$dn ]"
1243
1244
debug " Response = ${response// [$'\t\r\n']} "
1244
- AuthLinkResponse[$ dn ]=$response
1245
- AuthLinkResponseHeader[$ dn ]=$responseHeaders
1245
+ AuthLinkResponse[dn]=$response
1246
+ AuthLinkResponseHeader[dn]=$responseHeaders
1246
1247
fi
1247
1248
(( dn++ ))
1248
1249
done
You can’t perform that action at this time.
0 commit comments