From f813ab4850aa24839da2af71eda1ceb5cbd899f3 Mon Sep 17 00:00:00 2001 From: jurgenhaas <juergen@paragon-es.de> Date: Mon, 13 Mar 2017 11:48:32 +0100 Subject: [PATCH] Change order --- tasks/configure.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/tasks/configure.yml b/tasks/configure.yml index 11fc3d0..19f0f17 100644 --- a/tasks/configure.yml +++ b/tasks/configure.yml @@ -67,15 +67,6 @@ with_items: '{{ groups.webserver }}' changed_when: false -- name: "Proxy | Create config file" - template: - src='haproxy_cfg.jinja2' - dest='/etc/haproxy/haproxy.cfg' - owner='root' - group='root' - mode='644' - notify: 'Proxy | Restart HAProxy' - - name: "Proxy | Update blacklists" template: src='{{ item }}' @@ -88,3 +79,12 @@ - 'blacklist.referer' - 'blacklist.agent' notify: 'Proxy | Restart HAProxy' + +- name: "Proxy | Create config file" + template: + src='haproxy_cfg.jinja2' + dest='/etc/haproxy/haproxy.cfg' + owner='root' + group='root' + mode='644' + notify: 'Proxy | Restart HAProxy' -- GitLab