1
0
Fork 0
roles_webcluster/roles/web_lb/tasks/main.yml

25 lines
430 B
YAML
Raw Permalink Normal View History

2017-11-30 11:11:25 +00:00
---
- name: Install software
package:
name: "{{ item }}"
state: latest
with_items: "{{ lb_packages }}"
notify: Restart RSyslog
- name: HAProxy enable service
service:
name: haproxy
enabled: yes
state: started
- name: HAProxy create config
template:
dest: "/etc/haproxy/haproxy.cfg"
src: "haproxy.cfg.j2"
mode: 0644
backup: yes
notify:
- Restart HAProxy
- Restart RSyslog