diff options
author | Kim Alvefur <zash@zash.se> | 2016-02-28 18:47:11 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2016-02-28 18:47:11 +0100 |
commit | b4134596f5f6572604aeef890229acab458f693c (patch) | |
tree | 228edd6fa4950bf2a2d0e5187112e44f44039a8d | |
parent | 0af9b9446b9011e06c4f012bc1d35f542a5718d6 (diff) | |
download | prosody-b4134596f5f6572604aeef890229acab458f693c.tar.gz prosody-b4134596f5f6572604aeef890229acab458f693c.zip |
prosodyctl: One month is 31 days, no 13 (thanks av6)
-rwxr-xr-x | prosodyctl | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1248,7 +1248,7 @@ function commands.check(arg) cert_ok = false elseif not cert:validat(os.time() + 86400*7) then print(" Certificate expires within one week.") - elseif not cert:validat(os.time() + 86400*13) then + elseif not cert:validat(os.time() + 86400*31) then print(" Certificate expires within one month.") end if config.get(host, "component_module") == nil |