|
|
|
@ -1241,7 +1241,7 @@ create_order() { |
|
|
|
for d in "${alldomains[@]}"; do |
|
|
|
# Convert domain to lowercase as response from server will be in lowercase |
|
|
|
lower_d=$(echo "$d" | tr "[:upper:]" "[:lower:]") |
|
|
|
if [[ ( "$lower_d" == "$authdomain" && -z "$wildcard" ) || ( "$lower_d" == "*.${authdomain}" && -n "$wildcard" ) ]]; then |
|
|
|
if [[ ( "$lower_d" == "$authdomain" && "$wildcard" != "true" ) || ( "$lower_d" == "*.${authdomain}" && "$wildcard" == "true" ) ]]; then |
|
|
|
debug "Saving authorization response for $authdomain for domain alldomains[$dn]" |
|
|
|
debug "Response = ${response//[$'\t\r\n']}" |
|
|
|
AuthLinkResponse[dn]=$response |
|
|
|
|