Browse Source

Merge pull request #1194 from abutcher/haproxy-restart

Remove pause after haproxy start
Brenton Leanhardt 9 years ago
parent
commit
03ab833e01
2 changed files with 3 additions and 3 deletions
  1. 1 0
      roles/haproxy/handlers/main.yml
  2. 2 3
      roles/haproxy/tasks/main.yml

+ 1 - 0
roles/haproxy/handlers/main.yml

@@ -3,3 +3,4 @@
   service:
     name: haproxy
     state: restarted
+  when: not (haproxy_start_result_changed | default(false) | bool)

+ 2 - 3
roles/haproxy/tasks/main.yml

@@ -19,6 +19,5 @@
     enabled: yes
   register: start_result
 
-- name: Pause 30 seconds if haproxy was just started
-  pause: seconds=30
-  when: start_result | changed
+- set_fact:
+    haproxy_start_result_changed: "{{ start_result | changed }}"