Fix to reference the monitor_address variable correctly in hostvars

pull/844/head
Matthew Rees 2016-06-06 16:29:59 +02:00
parent 9d8ffa5bda
commit 211ba4a3de
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@
- nmapexist.rc != 0
- name: check if monitor port is not filtered
local_action: shell set -o pipefail && nmap -p 6789 {{ item }} {{ hostvars[item]['ansible_' + monitor_interface]['ipv4']['address'] if hostvars[item]['ansible_' + monitor_interface] is defined else hostvars[item][monitor_address] }} | grep -sqo filtered
local_action: shell set -o pipefail && nmap -p 6789 {{ item }} {{ hostvars[item]['ansible_' + monitor_interface]['ipv4']['address'] if hostvars[item]['ansible_' + monitor_interface] is defined else hostvars[item]['monitor_address'] }} | grep -sqo filtered
changed_when: false
failed_when: false
with_items: "{{ groups[mon_group_name] }}"