main.yml 489 B

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