default false

This commit is contained in:
Hemachandar
2026-02-03 02:16:54 +05:30
parent 19afa7eafd
commit d3b8bb9833
+1 -1
View File
@@ -23,7 +23,7 @@ class SSL extends Action
->desc('Validate server certificates')
->param('domain', System::getEnv('_APP_DOMAIN', ''), new Hostname(), 'Domain to generate certificate for. If empty, main domain will be used.', true)
->param('skip-check', true, new Boolean(true), 'If DNS and renew check should be skipped. Defaults to true, and when true, all jobs will result in certificate generation attempt.', true)
->param('check-rule', true, new Boolean(true), 'If rule lookup and updates should be checked. Defaults to true. Set to false for domains without a rule in DB (e.g., _APP_DOMAIN).', true)
->param('check-rule', false, new Boolean(true), 'If rule lookup and updates should be checked. Defaults to false. Set to true for domains with a rule in DB.', true)
->inject('queueForCertificates')
->callback($this->action(...));
}