fix domain_config.toml typos in conditions

This commit is contained in:
Axolotle 2023-02-01 18:13:07 +01:00 committed by GitHub
parent ade92e431d
commit 480f7a43ef
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -64,24 +64,24 @@ name = "Certificate"
[cert.cert.acme_eligible_explain]
type = "alert"
style = "warning"
visible = "acme_eligible == false || acme_elligible == null"
visible = "acme_eligible == false || acme_eligible == null"
[cert.cert.cert_no_checks]
ask = "Ignore diagnosis checks"
type = "boolean"
default = false
visible = "acme_eligible == false || acme_elligible == null"
visible = "acme_eligible == false || acme_eligible == null"
[cert.cert.cert_install]
type = "button"
icon = "star"
style = "success"
visible = "issuer != 'letsencrypt'"
visible = "cert_issuer != 'letsencrypt'"
enabled = "acme_eligible || cert_no_checks"
[cert.cert.cert_renew]
type = "button"
icon = "refresh"
style = "warning"
visible = "issuer == 'letsencrypt'"
visible = "cert_issuer == 'letsencrypt'"
enabled = "acme_eligible || cert_no_checks"