From b46fa2d455d2d07163ab20c7cfdf83918adbb4df Mon Sep 17 00:00:00 2001 From: SeAndersonT Date: Fri, 14 Nov 2025 10:51:08 -0600 Subject: [PATCH] fixed certbot command to use -n --- playbooks/cert_renewal/site.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playbooks/cert_renewal/site.yml b/playbooks/cert_renewal/site.yml index 5bd6080..0c6b6a8 100644 --- a/playbooks/cert_renewal/site.yml +++ b/playbooks/cert_renewal/site.yml @@ -13,7 +13,7 @@ state: stopped - name: Renew Certbot certificates ansible.builtin.command: - cmd: certbot certonly --standalone -d {{ item }} + cmd: certbot certonly --standalone -n -d {{ item }} loop: "{{ servers }}" - name: Start nginx service ansible.builtin.service: