From f99c956212ea85febffb616c49b599719c5b1e56 Mon Sep 17 00:00:00 2001 From: Ryan Cavicchioni Date: Sun, 1 Dec 2019 13:45:19 -0600 Subject: [PATCH] Fix certbot command --- roles/certbot/tasks/issue.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/certbot/tasks/issue.yaml b/roles/certbot/tasks/issue.yaml index af40e59..c1e55ae 100644 --- a/roles/certbot/tasks/issue.yaml +++ b/roles/certbot/tasks/issue.yaml @@ -5,5 +5,5 @@ register: st - name: "request certificate for {{ item.domains | join(', ') }}" - command: "[[ ! -e certbot certonly --webroot -w {{ certbot_challenge_webroot_path }} --agree-tos --noninteractive --email {{ item.email }} -d {{ item.domains | join(',') }}" + command: "certbot certonly -q --webroot -w {{ certbot_challenge_webroot_path }} --agree-tos --noninteractive --email {{ item.email }} -d {{ item.domains | join(',') }}" when: not st.stat.exists