Browse Source
Merge branch 'dev' into feat/notify-postmark
pull/2308/head
Honza Hommer
6 years ago
No known key found for this signature in database
GPG Key ID: F1A1FA427709F5EF
1 changed files with
2 additions and
2 deletions
-
dnsapi/dns_gcloud.sh
|
@ -93,7 +93,7 @@ _dns_gcloud_execute_tr() { |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
_dns_gcloud_remove_rrs() { |
|
|
_dns_gcloud_remove_rrs() { |
|
|
if ! xargs --no-run-if-empty gcloud dns record-sets transaction remove \ |
|
|
|
|
|
|
|
|
if ! xargs -r gcloud dns record-sets transaction remove \ |
|
|
--name="$fulldomain." \ |
|
|
--name="$fulldomain." \ |
|
|
--ttl="$ttl" \ |
|
|
--ttl="$ttl" \ |
|
|
--type=TXT \ |
|
|
--type=TXT \ |
|
@ -108,7 +108,7 @@ _dns_gcloud_remove_rrs() { |
|
|
|
|
|
|
|
|
_dns_gcloud_add_rrs() { |
|
|
_dns_gcloud_add_rrs() { |
|
|
ttl=60 |
|
|
ttl=60 |
|
|
if ! xargs --no-run-if-empty gcloud dns record-sets transaction add \ |
|
|
|
|
|
|
|
|
if ! xargs -r gcloud dns record-sets transaction add \ |
|
|
--name="$fulldomain." \ |
|
|
--name="$fulldomain." \ |
|
|
--ttl="$ttl" \ |
|
|
--ttl="$ttl" \ |
|
|
--type=TXT \ |
|
|
--type=TXT \ |
|
|