From 671f414e4530b123c896f5e090cb790d15cc86bc Mon Sep 17 00:00:00 2001 From: Egor Matveev Date: Sun, 1 Jun 2025 19:54:59 +0300 Subject: [PATCH] fix --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 7963c12..48df673 100644 --- a/main.py +++ b/main.py @@ -35,7 +35,7 @@ def update_host(host: str) -> bool: print("Not correct node") return False - gen_command = f"docker exec {container_name} certbot --nginx --email emmtvv@gmail.com --agree-tos -d \"{host}\"" + gen_command = f"docker exec {container_name} certbot --nginx --email emmtvv@gmail.com --agree-tos --non-interactive -d \"{host}\"" print(gen_command) gen_cert = call(gen_command)