From ed26bd71655a9c63073e45d876c3d194c6ca9e8a Mon Sep 17 00:00:00 2001 From: Yurii Prokulevych Date: Mon, 25 Jun 2018 07:34:29 +0200 Subject: [PATCH] Fix syntax for set_fact ansible task. Error in ansible task causes upgrade job to fail: tripleo-ci-centos-7-scenario000-multinode-oooq-container-upgrades Closes-Bug: 1778455 Change-Id: I4040c7cc004e8ee81355bbae6ccc1a0a4dfd0822 --- docker/services/pacemaker/haproxy.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docker/services/pacemaker/haproxy.yaml b/docker/services/pacemaker/haproxy.yaml index 76abd213f7..e3bbe7236d 100644 --- a/docker/services/pacemaker/haproxy.yaml +++ b/docker/services/pacemaker/haproxy.yaml @@ -402,7 +402,8 @@ outputs: ignore_errors: true register: haproxy_pcs_res_result - name: Set fact haproxy_pcs_res - set_fact: "{{haproxy_pcs_res_result|succeeded}}" + set_fact: + haproxy_pcs_res: "{{haproxy_pcs_res_result|succeeded}}" - name: haproxy baremetal to container upgrade tasks when: - step|int == 1