From 0c2493c24846bd183d113ef4048f0226e86ad1e7 Mon Sep 17 00:00:00 2001 From: Ralph Bean Date: Tue, 6 Jan 2015 19:35:41 +0000 Subject: [PATCH] Tag up the base haproxy role. --- roles/haproxy/tasks/main.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/roles/haproxy/tasks/main.yml b/roles/haproxy/tasks/main.yml index 6f8b7b201e..57882d4ed6 100644 --- a/roles/haproxy/tasks/main.yml +++ b/roles/haproxy/tasks/main.yml @@ -7,6 +7,7 @@ - haproxy tags: - packages + - haproxy - name: install haproxy/cfg in prod copy: src={{ item.file }} @@ -15,6 +16,8 @@ with_items: - { file: haproxy.cfg, dest: /etc/haproxy/haproxy.cfg } when: env != staging + tags: + - haproxy - name: install haproxy.cfg in stg copy: src={{ item.file }} @@ -23,6 +26,8 @@ with_items: - { file: haproxy.cfg.stg, dest: /etc/haproxy/haproxy.cfg } when: env == staging + tags: + - haproxy - name: install limits.conf and 503.http copy: src={{ item.file }} @@ -31,3 +36,5 @@ with_items: - { file: limits.conf, dest: /etc/security/limits.conf } - { file: 503.http, dest: /etc/haproxy/503.http } + tags: + - haproxy