infrastructure/ansible/roles/gateway/tasks/haproxy.yml
Jake Howard 974e0e8467
Enable services
Not just during reload
2020-04-28 20:48:15 +01:00

27 lines
468 B
YAML

- name: Install Haproxy
apt:
name: haproxy
become: true
- name: Haproxy config
template:
src: files/haproxy.cfg
dest: /etc/haproxy/haproxy.cfg
validate: /usr/sbin/haproxy -c -- %s
backup: yes
become: true
register: haproxy_config
- name: Enable Haproxy
service:
name: haproxy
enabled: true
become: true
- name: Restart Haproxy
service:
name: haproxy
state: restarted
become: true
when: haproxy_config.changed