From 5aa2dcce3089d08a46175513fecb55ce91004769 Mon Sep 17 00:00:00 2001 From: Michal Rostecki Date: Thu, 31 Mar 2016 20:48:08 +0200 Subject: [PATCH] Fix IP resolve check for RabbitMQ on AIO On AIO installation we cannot assume that the public IP address will be the first entry in "getent ahostsv4" result, because it may be also a localhost address. To make this check positive in AIO, we should look for the public IP in the whole output. Change-Id: I1da7b95d7f00c7f87ff68ead46bf55fdea812599 Closes-Bug: 1564564 --- ansible/roles/rabbitmq/tasks/bootstrap.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansible/roles/rabbitmq/tasks/bootstrap.yml b/ansible/roles/rabbitmq/tasks/bootstrap.yml index 01083ea54c..5ee091a4a2 100644 --- a/ansible/roles/rabbitmq/tasks/bootstrap.yml +++ b/ansible/roles/rabbitmq/tasks/bootstrap.yml @@ -7,7 +7,7 @@ - fail: msg="Hostname has to resolve to IP address of api_interface" with_items: rabbitmq_hostnames.results - when: "{% set ip=item.stdout.split(' ')[0] %}'{{ hostvars[item['item']]['ansible_' + hostvars[item['item']]['api_interface']]['ipv4']['address'] }}' != '{{ ip }}'" + when: "'{{ hostvars[item['item']]['ansible_' + hostvars[item['item']]['api_interface']]['ipv4']['address'] }}' not in '{{ item.stdout }}'" - name: Creating rabbitmq volume kolla_docker: