From 526d78de114db63b5bad00a84fde955745b09782 Mon Sep 17 00:00:00 2001 From: Olivier Navas Date: Wed, 23 Oct 2024 22:28:02 +0200 Subject: [PATCH] =?UTF-8?q?Variabilisation=20des=20certificats=20suppl?= =?UTF-8?q?=C3=A9mentaires?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tasks/main.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/tasks/main.yml b/tasks/main.yml index 1640fdf..d0b7b6b 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -200,7 +200,8 @@ mode: u=rw,g=r,o=r owner: root group: root - with_items: "{{ reverse_proxy_additional_certificates }}" + with_items: + - "{{ reverse_proxy_additional_certificates }}" notify: - restart apache2 @@ -213,7 +214,8 @@ mode: u=rw,g=r,o= owner: root group: root - with_items: "{{ reverse_proxy_additional_certificates }}" + with_items: + - "{{ reverse_proxy_additional_certificates }}" notify: - restart apache2 @@ -221,7 +223,8 @@ template: src: "cert_template.conf" dest: /etc/apache2/certs-conf/cert_{{ item.name }}.conf - with_items: "{{ reverse_proxy_additional_certificates }}" + with_items: + - "{{ reverse_proxy_additional_certificates }}" notify: - restart apache2 @@ -229,4 +232,3 @@ - name: install - active apache2 tags: install service: name=apache2 state=started enabled=yes -