You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
277 B
15 lines
277 B
9 months ago
|
- name: Setup HAProxy
|
||
|
hosts: all
|
||
|
become: yes
|
||
|
become_method: sudo
|
||
|
become_user: root
|
||
|
tasks:
|
||
|
- name: Install package
|
||
|
package:
|
||
|
name: haproxy
|
||
|
state: present
|
||
|
- name: Start HAProxy
|
||
|
service:
|
||
|
name: haproxy
|
||
|
enabled: true
|
||
|
state: started
|