Skip to content

Instantly share code, notes, and snippets.

@jwkidd3
Created November 13, 2018 20:23
Show Gist options
  • Save jwkidd3/5c2289bb5ed8693d97a36f8a81100d58 to your computer and use it in GitHub Desktop.
Save jwkidd3/5c2289bb5ed8693d97a36f8a81100d58 to your computer and use it in GitHub Desktop.
- 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