24 lines
441 B
YAML
24 lines
441 B
YAML
- name: 'HAProxy'
|
|
tags:
|
|
- install
|
|
- haproxy
|
|
block:
|
|
- name: 'HAProxy: package'
|
|
package:
|
|
name: 'haproxy'
|
|
state: latest
|
|
become: yes
|
|
|
|
- name: 'HAProxy: Config'
|
|
copy:
|
|
dest: '/etc/haproxy/haproxy.cfg'
|
|
src: 'files/haproxy.cfg'
|
|
become: yes
|
|
|
|
- name: 'HAProxy: Service'
|
|
systemd:
|
|
name: 'haproxy'
|
|
state: started
|
|
enabled: yes
|
|
become: yes
|