| 73 | } |
| 74 | |
| 75 | export interface CertbotCertCommandRule { |
| 76 | /** |
| 77 | * Matches both *.<domain> and <domain>, use '*' to match all domains |
| 78 | */ |
| 79 | domain: string |
| 80 | /** |
| 81 | * The Certbot command to execute, will be parsed using `shell-quote`, available variables are `${domainName}` and `${subdomain}` |
| 82 | */ |
| 83 | command?: string |
| 84 | } |
| 85 | |
| 86 | const data = { |
| 87 | configs: configs, // values that can be overridden |
nothing calls this directly
no outgoing calls
no test coverage detected