Browse Source
Merge pull request #4118 from retoo/bugfix/google-dns-escape-arguments
dns_gcloud: disable argument parsing for challenges
pull/4124/head
neil
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
dnsapi/dns_gcloud.sh
|
|
@ -98,7 +98,7 @@ _dns_gcloud_remove_rrs() { |
|
|
|
--ttl="$ttl" \ |
|
|
|
--type=TXT \ |
|
|
|
--zone="$managedZone" \ |
|
|
|
--transaction-file="$tr"; then |
|
|
|
--transaction-file="$tr" --; then |
|
|
|
_debug tr "$(cat "$tr")" |
|
|
|
rm -r "$trd" |
|
|
|
_err "_dns_gcloud_remove_rrs: failed to remove RRs" |
|
|
@ -113,7 +113,7 @@ _dns_gcloud_add_rrs() { |
|
|
|
--ttl="$ttl" \ |
|
|
|
--type=TXT \ |
|
|
|
--zone="$managedZone" \ |
|
|
|
--transaction-file="$tr"; then |
|
|
|
--transaction-file="$tr" --; then |
|
|
|
_debug tr "$(cat "$tr")" |
|
|
|
rm -r "$trd" |
|
|
|
_err "_dns_gcloud_add_rrs: failed to add RRs" |
|
|
|