mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
fix change quotes around CAA value for letsencrypt.org
This commit is contained in:
parent
1ac97c46ad
commit
c2631d74cd
1 changed files with 2 additions and 2 deletions
|
@ -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 {
|
||||||
|
|
Loading…
Add table
Reference in a new issue