From feb94e7a0c0a4a8090015021d6d32481094e94b3 Mon Sep 17 00:00:00 2001 From: Mikolaj Izdebski Date: Tue, 6 Mar 2018 04:54:32 +0000 Subject: [PATCH] Make certbot role install httpd This role tries to put file in /etc/httpd/conf.d, httpd should be installed first. --- roles/certbot/tasks/main.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/roles/certbot/tasks/main.yml b/roles/certbot/tasks/main.yml index 7cb2baebde..d214dc56e7 100644 --- a/roles/certbot/tasks/main.yml +++ b/roles/certbot/tasks/main.yml @@ -1,6 +1,7 @@ - name: Install the needed packages package: name={{item}} state=present with_items: + - httpd - certbot - name: Create directory for ACME challenge