Tag up the base haproxy role.

This commit is contained in:
Ralph Bean 2015-01-06 19:35:41 +00:00
parent f72b7ab17a
commit 0c2493c248

View file

@ -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