We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c321ac commit 2517a8fCopy full SHA for 2517a8f
3 files changed
cmd/cert-checker/main.go
@@ -680,6 +680,10 @@ func main() {
680
)
681
err = checker.issuedReport.dump()
682
cmd.FailOnError(err, "Failed to dump results: %s\n")
683
+
684
+ if checker.issuedReport.BadCerts > 0 {
685
+ os.Exit(1)
686
+ }
687
}
688
689
func init() {
test/config-next/cert-checker.json
@@ -11,6 +11,7 @@
11
"checkPeriod": "72h",
12
"acceptableValidityDurations": [
13
"7776000s",
14
+ "583200s",
15
"160h"
16
],
17
"lintConfig": "test/config-next/zlint.toml",
test/config/cert-checker.json
"ignoredLints": [
0 commit comments