Преглед изворни кода

Fix GCP master haproxy install check

Was failing if package was already installed.
Clayton Coleman пре 7 година
родитељ
комит
b81dda8e92
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      roles/openshift_gcp/tasks/configure_master_healthcheck.yml

+ 1 - 1
roles/openshift_gcp/tasks/configure_master_healthcheck.yml

@@ -8,7 +8,7 @@
 - name: install haproxy
   package: name=haproxy state=present
   register: result
-  until: '"failed" not in result'
+  until: result is succeeded
   retries: 10
   delay: 10