fix change quotes around CAA value for letsencrypt.org

This commit is contained in:
nqb 2018-12-08 04:39:30 +01:00 committed by Alexandre Aubin
parent 34c3968501
commit b71ee3a9a0

View file

@ -340,7 +340,7 @@ def _build_dns_conf(domain, ttl=3600):
{"type": "TXT", "name": "_dmarc", "value": "\"v=DMARC1; p=none\"", "ttl": 3600} {"type": "TXT", "name": "_dmarc", "value": "\"v=DMARC1; p=none\"", "ttl": 3600}
], ],
"extra": [ "extra": [
{"type": "CAA", "name": "@", "value": "128 issue 'letsencrypt.org'", "ttl": 3600}, {"type": "CAA", "name": "@", "value": "128 issue \"letsencrypt.org\"", "ttl": 3600},
], ],
} }
""" """
@ -397,7 +397,7 @@ def _build_dns_conf(domain, ttl=3600):
# Extra # Extra
extra = [ extra = [
["@", ttl, "CAA", "128 issue 'letsencrypt.org'"] ["@", ttl, "CAA", '128 issue "letsencrypt.org"']
] ]
return { return {