haproxy-wi/app/scripts/ansible/roles/haproxy/tasks/main.yml

18 lines
352 B
YAML
Raw Normal View History

2019-11-03 14:43:45 +00:00
---
2019-12-23 15:08:34 +00:00
- name: check if HAProxy is installed
2019-11-28 16:39:24 +00:00
package_facts:
manager: "auto"
2019-12-15 07:41:24 +00:00
- name: populate service facts
service_facts:
- include_tasks: configure.yml
- include_tasks: installation.yml
- include_tasks: logs.yml
2019-11-06 15:15:41 +00:00
- name: Add syn_flood tasks
include_tasks: syn_flood.yml
2019-11-06 15:15:41 +00:00
when: (SYN_FLOOD is defined) and (SYN_FLOOD|length > 0)
2019-11-28 16:39:24 +00:00