From 2da77410f752641d36aed5b4f43598f5e55f1795 Mon Sep 17 00:00:00 2001 From: Kevin Carter Date: Fri, 23 Sep 2016 11:39:31 -0500 Subject: [PATCH] Fix bug with iterable Certs were not being re-generated due to certs not being cleaned up which was being caused by the broken iterable. Change-Id: I733589205d81297d7bf34b0013100f0b7f9ceb91 Signed-off-by: Kevin Carter --- tasks/haproxy_ssl_configuration.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/haproxy_ssl_configuration.yml b/tasks/haproxy_ssl_configuration.yml index 3c8728e..331e8ff 100644 --- a/tasks/haproxy_ssl_configuration.yml +++ b/tasks/haproxy_ssl_configuration.yml @@ -61,7 +61,7 @@ - name: Remove signed certs and keys for regen file: - dest: "{{ haproxy_ssl_cert }}" + dest: "{{ item }}" state: "absent" with_items: - "{{ haproxy_ssl_pem }}"