main.yml 605 B

1234567891011121314151617181920212223242526272829303132
  1. ---
  2. - name: Install haproxy
  3. yum:
  4. pkg: haproxy
  5. state: present
  6. when: ansible_pkg_mgr == "yum"
  7. - name: Install haproxy
  8. dnf:
  9. pkg: haproxy
  10. state: present
  11. when: ansible_pkg_mgr == "dnf"
  12. - name: Configure haproxy
  13. template:
  14. src: haproxy.cfg.j2
  15. dest: /etc/haproxy/haproxy.cfg
  16. owner: root
  17. group: root
  18. mode: 0644
  19. notify: restart haproxy
  20. - name: Enable and start haproxy
  21. service:
  22. name: haproxy
  23. state: started
  24. enabled: yes
  25. register: start_result
  26. - name: Pause 30 seconds if haproxy was just started
  27. pause: seconds=30
  28. when: start_result | changed