From ffd0a12fa4cdf4f5f642258b07f61496bbf73e54 Mon Sep 17 00:00:00 2001 From: Patrick Uiterwijk Date: Thu, 4 Aug 2016 21:25:11 +0000 Subject: [PATCH] Fix stg Signed-off-by: Patrick Uiterwijk --- roles/haproxy/tasks/main.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/roles/haproxy/tasks/main.yml b/roles/haproxy/tasks/main.yml index 105d7efd0c..61cb43ecd8 100644 --- a/roles/haproxy/tasks/main.yml +++ b/roles/haproxy/tasks/main.yml @@ -27,7 +27,6 @@ with_items: - { file: limits.conf, dest: /etc/security/limits.conf } - { file: 503.http, dest: /etc/haproxy/503.http } - - { file: ipa.{{env}}.pem, dest: /etc/haproxy/ipa.pem } tags: - haproxy @@ -36,7 +35,7 @@ dest={{ item.dest }} owner=root group=root mode=0600 with_items: - - { file: ipa.{{env}}.pem, dest: /etc/haproxy/ipa.pem } + - { file: "ipa.{{env}}.pem", dest: /etc/haproxy/ipa.pem } tags: - haproxy when: env == "staging"