From f55564b0c5c0791c31b2c14351a7635d23ea0469 Mon Sep 17 00:00:00 2001 From: Matthew Fennell Date: Sun, 28 Dec 2025 20:06:30 +0000 Subject: Explicitly pass --days in lego command I would like different domains to have different renew-days, so that the certs for different domains do not always update on the same day as each other. This prevents a worst-case scenario where all domains break on one day. --- renew-all | 2 ++ 1 file changed, 2 insertions(+) diff --git a/renew-all b/renew-all index af6f157..05510fa 100755 --- a/renew-all +++ b/renew-all @@ -43,6 +43,8 @@ def main() -> None: + [ "renew", "--reuse-key", + "--days", + str(domain["renew_days"]), "--renew-hook", domain[f"renew_script_{args.env}"], ] -- cgit v1.2.3