mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
fix domain_config.toml typos in conditions
This commit is contained in:
parent
ade92e431d
commit
480f7a43ef
1 changed files with 4 additions and 4 deletions
|
@ -64,24 +64,24 @@ name = "Certificate"
|
||||||
[cert.cert.acme_eligible_explain]
|
[cert.cert.acme_eligible_explain]
|
||||||
type = "alert"
|
type = "alert"
|
||||||
style = "warning"
|
style = "warning"
|
||||||
visible = "acme_eligible == false || acme_elligible == null"
|
visible = "acme_eligible == false || acme_eligible == null"
|
||||||
|
|
||||||
[cert.cert.cert_no_checks]
|
[cert.cert.cert_no_checks]
|
||||||
ask = "Ignore diagnosis checks"
|
ask = "Ignore diagnosis checks"
|
||||||
type = "boolean"
|
type = "boolean"
|
||||||
default = false
|
default = false
|
||||||
visible = "acme_eligible == false || acme_elligible == null"
|
visible = "acme_eligible == false || acme_eligible == null"
|
||||||
|
|
||||||
[cert.cert.cert_install]
|
[cert.cert.cert_install]
|
||||||
type = "button"
|
type = "button"
|
||||||
icon = "star"
|
icon = "star"
|
||||||
style = "success"
|
style = "success"
|
||||||
visible = "issuer != 'letsencrypt'"
|
visible = "cert_issuer != 'letsencrypt'"
|
||||||
enabled = "acme_eligible || cert_no_checks"
|
enabled = "acme_eligible || cert_no_checks"
|
||||||
|
|
||||||
[cert.cert.cert_renew]
|
[cert.cert.cert_renew]
|
||||||
type = "button"
|
type = "button"
|
||||||
icon = "refresh"
|
icon = "refresh"
|
||||||
style = "warning"
|
style = "warning"
|
||||||
visible = "issuer == 'letsencrypt'"
|
visible = "cert_issuer == 'letsencrypt'"
|
||||||
enabled = "acme_eligible || cert_no_checks"
|
enabled = "acme_eligible || cert_no_checks"
|
||||||
|
|
Loading…
Add table
Reference in a new issue