Created
November 13, 2018 20:23
-
-
Save jwkidd3/5c2289bb5ed8693d97a36f8a81100d58 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- hosts: web | |
gather_facts: true | |
- hosts: haproxy | |
tasks: | |
- name: Installs haproxy load balancer | |
apt: | |
pkg: haproxy | |
state: present | |
update_cache: yes | |
- name: Pushes configuration | |
template: | |
src: templates/haproxy.cfg.j2 | |
dest: /etc/haproxy/haproxy.cfg | |
mode: 0640 | |
owner: root | |
group: root | |
notify: | |
- restart haproxy | |
- name: Sets default starting flag to 1 | |
lineinfile: | |
dest: /etc/default/haproxy | |
regexp: "^ENABLED" | |
line: "ENABLED=1" | |
notify: | |
- restart haproxy | |
handlers: | |
- name: restart haproxy | |
service: | |
name: haproxy | |
state: restarted |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment